Your Browser is not longer supported
Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...
{{viewport.spaceProperty.prod}}
isebcdic - auf EBCDIC-Zeichen prüfen (BS2000)
&pagelevel(4)&pagelevel
Definition | #include <ctype.h> int isebcdic(int c); |
Beschreibung | isebcdic prüft, ob der Wert des Zeichens c ein EBCDIC-Zeichen repräsentiert (Werte 0 - 255).
|
Returnwert | != 0 | der Wert von c repräsentiert ein EBCDIC-Zeichen (Werte 0 - 255). |
| 0 | kein EBCDIC-Zeichen (Werte != 0 - 255). |
Hinweise | isebcdic ist sowohl als Makro als auch als Funktion realisiert. Um einen Funktionsaufruf zu erzeugen, muss die Definition des Makronamens rückgängig gemacht werden (#undef isebcdic).
isebcdic ist ein Synonym für isascii.
|
Siehe auch | isalnum() , isalpha(), isascii(), iscntrl() , isdigit() , isgraph() , islower() , isprint() , ispunct() , isspace() , isupper() , isxdigit() .
|