lib: c: core: implement strchr and strcspn

This commit is contained in:
2026-03-25 20:21:28 +00:00
parent 96784f611f
commit 6787f28728
3 changed files with 35 additions and 0 deletions
+4
View File
@@ -8,6 +8,10 @@ extern const char *strerror_code(int errnum);
extern size_t strlen(const char *s);
extern size_t strcspn(const char *dest, const char *src);
extern char *strchr(const char *str, int c);
extern int strcmp(const char *s1, const char *s2);
extern int strncmp(const char *s1, const char *s2, unsigned long n);