forked from ArtemioUrbina/huc
-
Notifications
You must be signed in to change notification settings - Fork 18
String Functions
Bob Frasure edited this page Jan 5, 2025
·
1 revision
| void strcpy(char *dest, char *src); |
|---|
| void strncpy(char *dest, char *src, int max); |
| void memcpy(char *dest, char *src, int nb); |
Copy the source information to the destination area, as in ANSI 'C'. |
| void strcat(char *dest, char *src); |
|---|
| void strncat(char *dest, char *src, int max); |
Concatenate source string onto the end od destination string, as in ANSI 'C'. |
| void strcmp(char *dest, char *src); |
|---|
| void strncmp(char *dest, char *src, int max); |
| void memcmp(char *dest, char *src, int nb); |
Compare the source information against the destination information, as in ANSI 'C'. |