C LANGUAGE: STANDARD LIBRARY FUNCTIONS - STRING.H
COMPARISON FUNCTIONS
| memcmp() | Compare Memory Blocks |
| strcmp() | String Compare |
| strcoll() | String Compare Using Locale-Specific Collating Sequence |
| strncmp() | Bounded String Compare |
| strxfrm() | Transform Locale-Specific String |
CONCATENATION FUNCTIONS
| strcat() | String Concatenation |
| strncat() | Bounded String Concatenation |
COPYING FUNCTIONS
| memcpy() | Copy Memory Block |
| memmove() | Copy Memory Block |
| strcpy() | String Copy |
| strncpy() | Bounded String Copy |
SEARCH FUNCTIONS
| memchr() | Search Memory Block for Character |
| strchr() | Search String for Character |
| strcspn() | Search String for Intial Span of Characters Not in Set |
| strpbrk() | Search String for One of a Set of Characters |
| strrchr() | Search String in Reverse for Character |
| strspn() | Search String for Initial Span of Characters in Set |
| strstr() | Search String for Substring |
| strtok() | Search String for Token |
MISCELLANEOUS FUNCTIONS
| memset() | Initialize Memory Block |
| strerror() | Convert Error Number to String |
| strlen() | String Length |
No comments:
Post a Comment