Changeset 772 for soft/giet_vm/giet_libs/stdlib.c
- Timestamp:
- Feb 3, 2016, 9:59:18 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_libs/stdlib.c
r771 r772 113 113 114 114 /////////////////////////////////// 115 unsigned int strlen(char* string )115 int strlen( const char* string ) 116 116 { 117 117 unsigned int i = 0; … … 121 121 122 122 /////////////////////////////// 123 unsigned int strcmp(char * s1,124 123 int strcmp( const char * s1, 124 const char * s2 ) 125 125 { 126 126 while (1) … … 135 135 ///////////////////////// 136 136 char* strcpy( char* dest, 137 c har* source )137 const char* source ) 138 138 { 139 139 if (!dest || !source) return dest;
Note: See TracChangeset
for help on using the changeset viewer.