Methods |
Brief description |
memcpy |
Copies data from a source buffer into a destination buffer.
|
memset |
Fills a memory region with the given value.
|
strchr |
Search a character in the given string.
|
strcpy |
Copy from source string to destination string Return a pointer to the destination string.
|
strlen |
Return the length of a given string.
|
strncmp |
Compare the first specified bytes of 2 given strings Return 0 if equals Return >0 if 1st string > 2nd string Return <0 if 1st string < 2nd string.
|
strncpy |
Copy the first number of bytes from source string to destination string Return the pointer to the destination string.
|
strrchr |
Search a character backword from the end of given string.
|