Changes between Version 7 and Version 8 of kernel_miscelaneous


Ignore:
Timestamp:
Jul 16, 2015, 12:06:17 PM (9 years ago)
Author:
guerin
Comment:

Add strcmp

Legend:

Unmodified
Added
Removed
Modified
  • kernel_miscelaneous

    v7 v8  
    2020This function returns the length of the '''str''' string (without the terminating NUL charater).
    2121
     22=== unsigned int '''_strcmp'''( const char*  s1, const char*  s2 );
     23This function compares two '''s1''' and '''s2''' strings.
     24Returns 0 if all characters are identical. Returns 1 otherwise.
     25
    2226=== unsigned int '''_strncmp'''( const char*  s1, const char*  s2,  unsigned int n );
    2327This function compares the '''n''' first characters of the two '''s1''' and '''s2''' strings.
    24 Returns 0 if all characters are identical. returns 1 otherwise.
     28Returns 0 if all characters are identical. Returns 1 otherwise.
    2529
    2630=== char* '''_strcpy'''( char* dest,  char* source ) ===