Table of Contents

IsColorCodeChar

bool IsColorCodeChar(int c)

Description

Returns true if c is a valid single-character color code (like \cg but not \c[blue]).

See the list of single-character color codes at ZDoom Wiki

[ is not treated as a color code by this function.
The argument is a character (integer), not a string.

Examples

IsColorCodeChar('g') -> true
IsColorCodeChar('a') -> false