about summary refs log tree commit diff
path: root/mseq.c
blob: 2fba9ad16d463b46a5a6caad4dc2e7a33e2772f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

#include "blaze822.h"

int
main(int argc, char *argv[])
{
	char *map = blaze822_seq_open(0);
	if (!map)
		return 1;

	int i;
	char *f;
	struct blaze822_seq_iter iter = { 0 };
	for (i = 1; i < argc; i++) {
		while ((f = blaze822_seq_next(map, argv[i], &iter))) {
			printf("%s\n", f);
			free(f);
		}
	}

	return 0;
}