Subversion Repositories Kolibri OS

Rev

Rev 1126 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1126 Rev 1128
Line 131... Line 131...
131
 
131
 
Line 132... Line 132...
132
void*   memcpy(void *s1, const void *s2, size_t n);
132
void*   memcpy(void *s1, const void *s2, size_t n);
133
void*   memset(void *s, int c, size_t n);
133
void*   memset(void *s, int c, size_t n);
134
size_t  strlen(const char *s);
134
size_t  strlen(const char *s);
-
 
135
char *strcpy(char *s1, const char *s2);
135
char *strncpy (char *dst, const char *src, size_t len);
136
char *strncpy (char *dst, const char *src, size_t len);
Line 136... Line 137...
136
 
137
 
Line 137... Line 138...
137
void *malloc(size_t size);
138
void *malloc(size_t size);