blob: e5e4b94455e22c954bfdc29a4e54268e4e1f6b56 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef STRING_H
#define STRING_H
void* memcpy(void* restrict dstptr, const void* restrict srcptr, int size);
int strcmp(char *str1, char *str2);
int strcmp_l(char *str1, char *str2, int length);
int strlen(const char* string);
#endif
|