summaryrefslogtreecommitdiffstats
path: root/test/tape-test.c
blob: 7d0f7dfcd799daca8e4b86cde196ae829e603d61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdlib.h>
#include <stdio.h>
#include <tape.c>
extern int main(int argc, char* argv[]) {
	if(argc != 3) {
		printf("usage: %s source-file destination-file\n", argv[0]);
		return 1;
	}
	// bvr_var_set("abc", "1234");
	// bvr_var_set("ab", "123");
	// printf("%s\n", bvr_var_get("abc"));
	// printf("%s\n", bvr_var_get("ab"));
	bvr_compose_page(argv[1], 0, argv[2]);
	return 1;
}