bool IsColorCodeChar(int c)
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.
IsColorCodeChar('g') -> true IsColorCodeChar('a') -> false