isGreek Function (Macro)

ctype.h

short isGreek (short c);

Checks whether a character is a Greek letter.

isGreek returns nonzero if c is a Greek letter (0x80 to 0x94 and 0xB5), otherwise it returns zero. It is a relatively small inline function which is implemented using GNU C smart macros.