Loading...
Select Version
&pagelevel(4)&pagelevel
Definition | #include <ctype.h> int isebcdic(int c);
| |
Returnwert | != 0 | der Wert von c repräsentiert ein EBCDIC-Zeichen (Werte 0 - 255). |
0 | kein EBCDIC-Zeichen (Werte | |
Hinweise |
| |
Beispiel | #include <ctype.h> #include <stdio.h> int main(void) { int c; while((c = getchar()) != EOF) printf("%s : %c\n", ((isebcdic(c)) ? "EBCDIC-Zeichen" : "Sonstiges"), c); return 0; } | |
Siehe auch | isalpha, isalnum, isascii, iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace, isupper, isxdigit |