Add src/theme/xbm/parse.c

This commit is contained in:
Johan Malm 2020-06-23 07:17:07 +01:00
parent d80a7b518f
commit f86394a997
7 changed files with 125 additions and 13 deletions

23
tools/xbm/xbm-parse.c Normal file
View file

@ -0,0 +1,23 @@
#include <stdio.h>
#include <stdlib.h>
#include "xbm.h"
int main(int argc, char **argv)
{
struct token *tokens;
if (argc != 2) {
fprintf(stderr, "usage: %s <xbm-file>\n", argv[0]);
return 1;
}
char *buffer = xbm_read_file(argv[1]);
if (!buffer)
exit(EXIT_FAILURE);
tokens = xbm_tokenize(buffer);
free(buffer);
xbm_create_bitmap(tokens);
free(tokens);
}