testing stuff
[retrocrawl] / src / amiga / libc / string.h
1 #ifndef AMIGA_LIBC_STRING_H_
2 #define AMIGA_LIBC_STRING_H_
3
4 #include <stdlib.h>
5
6 void memcpy(void *dest, const void *src, size_t n);
7 void memset(void *dest, int c, size_t n);
8
9 #endif  /* AMIGA_LIBC_STRING_H_ */