Changes between Version 7 and Version 8 of kernel_miscelaneous
- Timestamp:
- Jul 16, 2015, 12:06:17 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
kernel_miscelaneous
v7 v8 20 20 This function returns the length of the '''str''' string (without the terminating NUL charater). 21 21 22 === unsigned int '''_strcmp'''( const char* s1, const char* s2 ); 23 This function compares two '''s1''' and '''s2''' strings. 24 Returns 0 if all characters are identical. Returns 1 otherwise. 25 22 26 === unsigned int '''_strncmp'''( const char* s1, const char* s2, unsigned int n ); 23 27 This function compares the '''n''' first characters of the two '''s1''' and '''s2''' strings. 24 Returns 0 if all characters are identical. returns 1 otherwise.28 Returns 0 if all characters are identical. Returns 1 otherwise. 25 29 26 30 === char* '''_strcpy'''( char* dest, char* source ) ===