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 - test for EBCDIC character (BS2000)

&pagelevel(4)&pagelevel

Syntax

#include <ctype.h>

int isebcdic(int c);

Description isebcdic tests whether the value of the character c represents an EBCDIC character

(values 0 - 255).

Return val.

!= 0

0

The value of c represents an EBCDIC character (values 0 - 255).

Not an EBCDIC character (values != 0 - 255).

Notes

isebcdic is implemented both as a function and as a macro. To generate a function call,
the definition of the macro name must be first undefined (#undef isebcdic).

isebcdic is a synonym for isascii.

See also

isalpha(), isalnum(), isascii(), iscntrl(), isdigit(), isgraph(), islower(),
isprint(), ispunct(), isspace(), isupper(), isxdigit().