add: string.h
This commit is contained in:
parent
c9c5479bbb
commit
48b500c443
9
include/string.h
Normal file
9
include/string.h
Normal 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);
|
Loading…
Reference in New Issue
Block a user