add: string.h

This commit is contained in:
starnakin 2024-09-06 23:09:11 +02:00
parent c9c5479bbb
commit 48b500c443

9
include/string.h Normal file
View File

@ -0,0 +1,9 @@
#pragma once
#include <stddef.h>
char *strchr(const char *str, int c);
int strcmp(const char *s1, const char *s2);
int strncmp(const char *s1, const char *s2, size_t n);
size_t strlen(const char *str);
char *strstr(const char *haystack, const char *needle);