From 7258ae92378c9b5a85ef649c95714701039899df Mon Sep 17 00:00:00 2001 From: 0xdeadbeer Date: Wed, 28 Aug 2024 20:31:07 +0200 Subject: [PATCH] feat: add strencmp --- streecmp.h | 1 + 1 file changed, 1 insertion(+) diff --git a/streecmp.h b/streecmp.h index 318df1c..92a12a3 100644 --- a/streecmp.h +++ b/streecmp.h @@ -21,5 +21,6 @@ struct nod *mknod(struct nod *nod, int loc); int mkstr(struct nod *nod, char *str); int gentree(struct nod *nod, char *strs, char *delim); int streecmp(struct nod *nod, char *str); +int streencmp(struct nod *nod, char *str, int len); #endif