This commit is contained in:
Romain Goyet
2015-05-31 13:24:35 +02:00
parent 525f2aef9f
commit 803ffda5bc
20 changed files with 127 additions and 23 deletions

18
liba/include/string.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef LIBA_STRING_H
#define LIBA_STRING_H
#include "private/macros.h"
#include "private/types.h"
#define NULL 0
LIBA_BEGIN_DECLS
void * memcpy(void * dst, const void * src, size_t n);
void * memset(void * b, int c, size_t len);
size_t strlen(const char * s);
LIBA_END_DECLS
#endif