Changeset 2029 for Whitix/trunk
- Timestamp:
- 04/02/09 21:30:34 (3 years ago)
- Files:
-
- 1 modified
-
Whitix/trunk/lib/string.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
Whitix/trunk/lib/string.c
r1934 r2029 33 33 34 34 SYMBOL_EXPORT(strncpy); 35 36 char* stpcpy(char* dest, char* src) 37 { 38 while (*src != '\0') 39 *dest++=*src++; 40 41 return dest; 42 } 43 44 SYMBOL_EXPORT(stpcpy); 35 45 36 46 int strncmp(const char* s1,const char* s2,int num)
