diff options
author | Alexis211 <alexis211@gmail.com> | 2010-04-05 20:32:08 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2010-04-05 20:32:08 +0200 |
commit | ca4f5906f284e60a7a59ca7450e3e09c4f9356e5 (patch) | |
tree | a44542c66cd9533c921f399fc1bee62703d15538 /src/include/string.h | |
parent | 8d94ae49601e0e4023bcdc35191669b2c24f6c96 (diff) | |
download | TCE-ca4f5906f284e60a7a59ca7450e3e09c4f9356e5.tar.gz TCE-ca4f5906f284e60a7a59ca7450e3e09c4f9356e5.zip |
Some stuff added to userland.
Diffstat (limited to 'src/include/string.h')
-rw-r--r-- | src/include/string.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/include/string.h b/src/include/string.h new file mode 100644 index 0000000..15ec3f3 --- /dev/null +++ b/src/include/string.h @@ -0,0 +1,11 @@ +#ifndef _DEF_STRING_H +#define _DEF_STRING_H + +#include <gc/syscall.h> + +void *memcpy(void *dest, const void *src, int count); +uint8_t *memset(uint8_t *dest, uint8_t val, int count); +uint16_t *memsetw(uint16_t *dest, uint16_t val, int count); +int strlen(const char *str); + +#endif |