Started work on implementing Markdown parser
This commit is contained in:
@@ -1,12 +1,17 @@
|
||||
#include "../include/lenstr.h"
|
||||
|
||||
#include <ctype.h>
|
||||
#include <stdbool.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
|
||||
|
||||
int main(void)
|
||||
{
|
||||
string a = StrLit("Hello, world!");
|
||||
PrintStr(a);
|
||||
FILE *mdFile = fopen("../tests/markdown_specification.md", "r");
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user