parsing prefix version (binary operators) of msph

This commit is contained in:
Ellen Arvidsson 2025-04-22 21:08:03 +03:00
parent 7e5f080282
commit 17be15d7b5
12 changed files with 617 additions and 92 deletions

View file

@ -4,6 +4,7 @@
#include "msph/err.h"
#define MSPH_IDENT_LEN 128
#define MSPH_NAME_LEN 1024
struct msph_ctx {
int err;
@ -15,4 +16,10 @@ struct msph_ctx {
int errline;
#endif
};
struct msph_text_pos {
unsigned int line;
unsigned int col;
};
#endif