From ee348973b0cb0f6481e4fd6e7494c63167c9759c Mon Sep 17 00:00:00 2001 From: Alexis211 Date: Wed, 7 Apr 2010 11:37:21 +0200 Subject: More work on manager --- src/include/string.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/include/string.h') diff --git a/src/include/string.h b/src/include/string.h index 15ec3f3..24ac216 100644 --- a/src/include/string.h +++ b/src/include/string.h @@ -2,10 +2,17 @@ #define _DEF_STRING_H #include +#include 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); +char *strcpy(char *dest, const char *src); +char *strdup(const char *src); +char *strchr(const char *str, char c); +char *strcat(char *dest, const char *src); +int strcmp(const char *s1, const char *s2); #endif -- cgit v1.2.3