Przestrzenie nazw
Warianty
Działania

Standardowe funkcje łańcuchowe i znakowe w C

Z cppreference.com
< cpp


atofkonwertuje ciąg znaków na liczbę typu double
atoikonwertuje ciąg znaków na liczbę typu integer
atolkonwertuje ciąg znaków na liczbę typu long
isalnumtrue if a character is alphanumeric
isalphatrue if a character is alphabetic
iscntrltrue if a character is a control character
isdigitzwraca wartość różną od zera jeżeli znak jest cyfrą
isgraphtrue if a character is a graphical character
islowerzwraca wartość różną od zera jeżeli znak jest małą literą
isprinttrue if a character is a printing character
ispuncttrue if a character is punctuation
isspacetrue if a character is a space character
isupperzwraca wartość różną od zera jeżeli znak jest wielką literą
isxdigittrue if a character is a hexadecimal character
memchrsearches an array for the first occurance of a character
memcmpcompares two buffers
memcpycopies one buffer to another
memmovemoves one buffer to another
memsetfills a buffer with a character
strcatconcatenates two strings
strchrznajduje pierwsze wystąpienie znaku w ciągu znaków
strcmpcompares two strings
strcollcompares two strings in accordance to the current locale
strcpycopies one string to another
strcspnsearches one string for any characters in another
strerrorreturns a text version of a given error code
strlenzwraca długość ciągu znaków
strncatconcatenates a certain amount of characters of two strings
strncmpporównuje podaną liczbę pierwszych znaków dwóch ciągów znaków
strncpycopies a certain amount of characters from one string to another
strpbrkfinds the first location of any character in one string, in another string
strrchrznajduje ostatnie wystąpienie znaku w ciągu znaków
strspnreturns the length of a substring of characters of a string
strstrfinds the first occurance of a substring of characters
strtodconverts a string to a double
strtokfinds the next token in a string
strtolconverts a string to a long
strtoulconverts a string to an unsigned long
strxfrmconverts a substring so that it can be used by string comparison functions
tolowerzwraca znak w postaci małej litery
toupperzwraca znak w postaci wielkiej litery