blob: 20c9cf3a5d3c7bc97df1b8a52592737c5137868e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _STRING_H
#define _STRING_H
#include <stddef.h>
int memcmp(const void *__s1, const void *__s2, size_t __n);
void *memcpy(void *__dst, const void *__src, size_t __n);
void *memset(void *__dst, int __c, size_t __n);
char *strchr(const char *__s, int __n);
char *strerror(int errnum);
size_t strlen(const char *__s);
#endif
|