seahag/test/store_header.c

14 lines
193 B
C
Raw Normal View History

2023-08-09 15:28:02 -04:00
#include "haggis_private.h"
#include <stdio.h>
int main() {
FILE *f;
int ret;
f = fopen("output/header", "w");
ret = haggis_store_header(f);
fclose(f);
return ret;
}