< C++-Referenz < Standardbibliothek 




































Alte Seite
Die Arbeit am Buch »C++-Referenz« wurde vom Hauptautor eingestellt. Ein Lehrbuch zum Thema C++ ist unter »C++-Programmierung« zu finden. Eine sehr umfangreiche und gute Referenz gibt es unter cppreference.com.
Diese Seite beschreibt C++98, einen stark veralteten Standard. Aktuelle Referenz.
isalnum

// Header: cctype
int isalnum(int ch);
isalpha

// Header: cctype
int isalpha(int ch);
iscntrl

// Header: cctype
int iscntrl(int ch);
isdigit

// Header: cctype
int isdigit(int ch);
isgraph

// Header: cctype
int isgraph(int ch);
islower

// Header: cctype
int islower(int ch);
isprint

// Header: cctype
int isprint(int ch);
ispunct

// Header: cctype
int ispunct(int ch);
isspace

// Header: cctype
int isspace(int ch);
isupper

// Header: cctype
int isupper(int ch);
isxdigit

// Header: cctype
int isxdigit(int ch);
memchr

// Header: cstring
void* memchr(void const *buf, int ch, size_t count);
memcmp

// Header: cstring
int memcmp(void const *buf1, void const *buf2, size_t count);
memcpy

// Header: cstring
void* memcpy(void *to, void const *from, size_t count);
memmove

// Header: cstring
void* memmove(void *to, void const *from, size_t count);
memset

// Header: cstring
void* memset(void *buf, int ch, size_t count);
strcat

// Header: cstring
char* strcat(char *str1, char const *str2);
strchr

// Header: cstring
char* strchr(char const *str, int ch);
strcmp

// Header: cstring
int strcmp(char const *str1, char const *str2);
strcoll

// Header: cstring
int strcoll(char const *str1, char const *str2);
strcpy

// Header: cstring
char* strcpy(char *str1, char const *str2);
strcspn

// Header: cstring
size_t strcspn(char const *str1, char const *str2);
strerror

// Header: cstring
char* strerror(int errnum);
strlen

// Header: cstring
size_t strlen(char const *str);
strncat

// Header: cstring
char* strncat(char *str1, char const *str2, size_t count);
strncmp

// Header: cstring
int strncmp(char const *str1, char const *str2, size_t count);
strncpy

// Header: cstring
char* strncpy(char *str1, char const *str2, size_t count);
strpbrk

// Header: cstring
char* strpbrk(char const *str1, char const *str2);
strrchr

// Header: cstring
char* strrchr(char const *str, int ch);
strspn

// Header: cstring
size_t strspn(char const *str1, char const *str2);
strstr

// Header: cstring
char* strstr(char const *str1, char const *str2);
strtok

// Header: cstring
char* strtok(char *str1, char const *str2);
strxfrm

// Header: cstring
size_t strxfrm(char *str1, char const *str2, size_t count);
tolower

// Header: cctype
int tolower(int ch);
toupper

// Header: cctype
int toupper(int ch);
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.