Looks like I broke compilation???

This commit is contained in:
2023-07-14 13:41:20 -03:00
parent 817eea895a
commit ca9ef0d4f7
7 changed files with 69 additions and 10 deletions

View File

@@ -110,7 +110,7 @@
}%%
sc_result parse(char *input) {
sc_result parse(char *input, unsigned int len) {
%%write data;
char *eof, *ts, *te = 0;
@@ -118,7 +118,7 @@ sc_result parse(char *input) {
char *start = input;
char *p = input;
char *pe = p + strlen(input);
char *pe = p + len;
sc_result result;
shortcode *sc_list = result.sc;