Started work on implementing Markdown parser

This commit is contained in:
kilroy
2025-11-29 21:19:07 -05:00
parent 2a7bd4bef7
commit 767085b160

View File

@@ -1,12 +1,17 @@
#include "../include/lenstr.h" #include "../include/lenstr.h"
#include <ctype.h>
#include <stdbool.h>
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
int main(void) int main(void)
{ {
string a = StrLit("Hello, world!"); FILE *mdFile = fopen("../tests/markdown_specification.md", "r");
PrintStr(a);
return 0; return 0;
} }