summaryrefslogtreecommitdiffstats
path: root/test/tape-test.c
blob: f1cca25cfc67229e39b44940f96d18d31736da96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <stdlib.h>
#include <stdio.h>
#include <tape.c>
extern int main(int argc, char* argv[]) {
	if(argc != 3) {
		printf("usage: %s source-file file-with-commands-replaced-with-a's\n", argv[0]);
		return 1;
	}
	return bvr_compose_page(argv[1], 0, argv[2]);
}