feat: add strencmp

This commit is contained in:
0xdeadbeer 2024-08-28 20:31:07 +02:00
parent e5f6c01c2b
commit 7258ae9237

View File

@ -21,5 +21,6 @@ struct nod *mknod(struct nod *nod, int loc);
int mkstr(struct nod *nod, char *str); int mkstr(struct nod *nod, char *str);
int gentree(struct nod *nod, char *strs, char *delim); int gentree(struct nod *nod, char *strs, char *delim);
int streecmp(struct nod *nod, char *str); int streecmp(struct nod *nod, char *str);
int streencmp(struct nod *nod, char *str, int len);
#endif #endif