enum Poco::Ascii::CharacterProperties

ASCII character properties.

#include <Ascii.h>

enum CharacterProperties
{
    ACP_CONTROL  = 0x0001,
    ACP_SPACE    = 0x0002,
    ACP_PUNCT    = 0x0004,
    ACP_DIGIT    = 0x0008,
    ACP_HEXDIGIT = 0x0010,
    ACP_ALPHA    = 0x0020,
    ACP_LOWER    = 0x0040,
    ACP_UPPER    = 0x0080,
    ACP_GRAPH    = 0x0100,
    ACP_PRINT    = 0x0200,
};