Changes between Version 6 and Version 7 of library_stdlib
- Timestamp:
- Jul 19, 2015, 8:03:10 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
library_stdlib
v6 v7 22 22 This function returns the number of characters in a string. The terminating NUL character is not taken into account. 23 23 24 *unsigned int '''strcmp'''( char* s1 , char* s2 ) ==24 == unsigned int '''strcmp'''( char* s1 , char* s2 ) == 25 25 This function compare the two s1 & s2 strings.It returns 0 if strings are identical (including the terminating NUL character), 26 26 and returns 1 if they are not.