Class Summary |
MemChr |
This function searches for a2 (converted to an unsigned char) in the first a3 characters of the object pointed to by a1. |
MemCmp |
This function compares the first a3 characters of each object and returns a value accordingly. |
MemCpy |
This function copies a3 characters from a2 to a1. |
MemMove |
This function copies a3 characters from a2 to a1. |
MemSet |
This function sets the first a3 characters of the object pointed to by a1, to the value in a2 (converted to an unsigned char). |
StrCat |
This function appends a2 to the end of a1, overwriting the null byte at the end of a1. |
StrChr |
This function searches for a2 (converted to an unsigned char) in the string pointed to by a1 (including null
terminator). |
StrCmp |
This functions compares the two strings and returns a value accordingly. |
StrCpy |
This function copies the whole of the string in a2 to a1 (including the null terminator). |
StrLen |
This function works out the length of the string pointed to by a1 (ie the number of characters before the null
terminator). |
StrNCat |
This function appends up to a3 characters of a2 to the end of a1. |
StrNCmp |
This function compares up to a3 characters and returns a value as appropriate. |
StrNCpy |
This function copies up to a3 characters from a2 to a1. |