annotate src/klibc/string.h @ 30:a2c6110bd24b
refactored the code a bit, and merged with the malloc implementation branch
author |
John Tsiombikas <nuclear@siggraph.org> |
date |
Fri, 27 May 2011 22:09:10 +0300 |
parents |
86781ef20689 |
children |
ebca81749ef5 |
rev |
line source |
nuclear@0
|
1 #ifndef STRING_H_
|
nuclear@0
|
2 #define STRING_H_
|
nuclear@0
|
3
|
nuclear@0
|
4 #include <stdlib.h>
|
nuclear@0
|
5
|
nuclear@1
|
6 void memset(void *s, int c, size_t n);
|
nuclear@2
|
7 void memset16(void *s, int c, size_t n);
|
nuclear@2
|
8
|
nuclear@1
|
9 void *memcpy(void *dest, const void *src, size_t n);
|
nuclear@1
|
10 void *memmove(void *dest, const void *src, size_t n);
|
nuclear@0
|
11
|
nuclear@5
|
12 size_t strlen(const char *s);
|
nuclear@5
|
13
|
nuclear@5
|
14 char *strchr(const char *s, int c);
|
nuclear@5
|
15 char *strrchr(const char *s, int c);
|
nuclear@5
|
16
|
nuclear@0
|
17 #endif /* STRING_H_ */
|