4a1812fa37bacf03efbc67d1e5e7cc81a71d29e5
[rpikern] / src / libc / string.h
1 #ifndef LIBC_STRING_H_
2 #define LIBC_STRING_H_
3
4 void *memset(void *ptr, int val, int size);
5 void *memcpy(void *dest, void *src, int size);
6
7 int strcmp(const char *a, const char *b);
8
9 #endif  /* LIBC_STRING_H_ */