fn() isalnum
Check if character is alphanumeric.

Defined in <cctype>
Signature bool isalnum(c);

Parameters

c The character to be checked. Type: int

Return Values

bool true (non-zero) if c is alphanumeric.

Detailed Description

Remarks

This is non-SeqAn, plain c and listed for completeness.

See Also