serial experiment works
[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_ */