summaryrefslogtreecommitdiffstats
path: root/test/tape-test.c
blob: f74167f98c4c2792b404ac25964306520f5ee52a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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"));
	return bvr_compose_page(argv[1], 0, argv[2]);
}