mirror of
https://github.com/drasko/codezero.git
synced 2026-03-03 19:13:17 +01:00
Intermediate stage in reincorporating old libc into userspace tasks.
This commit is contained in:
@@ -1,11 +0,0 @@
|
||||
#ifndef __LIB_STRING_H__
|
||||
#define __LIB_STRING_H__
|
||||
|
||||
int strlen(const char *s);
|
||||
char *strcpy(char *to, const char *from);
|
||||
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__ */
|
||||
Reference in New Issue
Block a user