ΒΆbool isPrintable(int UCS)

Description

Determines if a character is likely to be displayed correctly on the terminal. Exact implementation would have to depend on the specific terminal, so we define the semantic that should be suitable for generic case of a terminal capable to output Unicode characters. Printable codepoints are those in the categories L, M, N, P, S and Zs

Declared at: llvm/include/llvm/Support/Unicode.h:39

Parameters

int UCS

Returns

true if the character is considered printable.