-
Notifications
You must be signed in to change notification settings - Fork 0
Home
LuigiFerrari edited this page Apr 20, 2021
·
5 revisions
Sorting by header type
ex:
type.h
Name | Description |
---|---|
bzero | The cat run away from the water man |
memset | The cat run away from the water man |
memcpy | The cat run away from the water man |
memccpy | The cat run away from the water man |
memmove | The cat run away from the water man |
memcmp | The cat run away from the water man |
memchr | The cat run away from the water man |
memdel | The cat run away from the water man |
---- --- -- - | |
strcpy | The cat run away from the water man |
strcat | The cat run away from the water man |
strlcpy | The cat run away from the water man |
strlcat | The cat run away from the water man |
strncat | The cat run away from the water man |
strncpy | The cat run away from the water man |
strcmp | The cat run away from the water man |
strncmp | The cat run away from the water man |
---- --- -- - | |
strlen | The cat run away from the water man |
strnlen | The cat run away from the water man |
strclen | The cat run away from the water man |
strslen | The cat run away from the water man |
---- --- -- - | |
strchr | The cat run away from the water man |
strrchr | The cat run away from the water man |
strstr | The cat run away from the water man |
strnstr | The cat run away from the water man |
---- --- -- - | |
calloc | The cat run away from the water man |
strdup | The cat run away from the water man |
substr | The cat run away from the water man |
strjoin | The cat run away from the water man |
strtrim | The cat run away from the water man |
split | The cat run away from the water man |
strmapi | The cat run away from the water man |
Name | Description |
---|---|
putchar | Output a character on the screen |
putstr | Output a string on the screen |
putnstr | Output a string on the screen until n characters is printed |
putcstr | Output a string on the screen until c is find it |
putsstr | Output a string on the screen until a substring s is find it |
putnbr | Output a integer value on the screen |
---- --- -- - | |
putchar_fd | Output a character on a given filedescriptor fd |
putstr_fd | Output a string on a given filedescriptor fd |
putendl_fd | Output a string with a linebreak in the end on a given filedescriptor fd |
putnbr_fd | Output a integer value on a given filedescriptor fd |
Name | Description |
---|---|
islower | Check if character is lowercase letter |
isupper | Check if character is uppercase letter |
isalpha | Check if character is an alphabet letter |
isdigit | Check if character is decimal digit letter |
isalnum | Check if character is an alphabet letter or decimal digit letter |
isascii | Check if character is an ascii(0 - 127) letter |
isxdigit | Check if character is a hexadecimal digit letter |
isspace | Check if character is a white-space letter |
isprint | Check if character is a pritable letter |
tolower | Convert the character from uppercase to lowercase |
toupper | Convert the character from lowercase to uppercase |