Files
codezero/include/l4/lib/string.h
Bahadir Balban e2b791a3d8 Initial commit
2008-01-13 13:53:52 +00:00

10 lines
263 B
C

#ifndef __LIB_STRING_H__
#define __LIB_STRING_H__
char *strncpy(char *dest, const char *src, int count);
int strcmp(const char *s1, const char *s2);
void *memset(void *p, int c, int size);
void *memcpy(void *d, void *s, int size);
#endif /* __LIB_STRING_H__ */