]> git.lyx.org Git - lyx.git/blobdiff - src/support/textutils.h
Expose python 3 support to some testing
[lyx.git] / src / support / textutils.h
index e1a3063d8227d3fcfccaa8582a9720a8e8aa36f8..78e34cb4891cf4dc4e948d7fed6b411718e05ca2 100644 (file)
@@ -41,12 +41,18 @@ bool isPrintableNonspace(char_type c);
 /// return true if a unicode char is a space.
 bool isSpace(char_type c);
 
-/// return true if a unicode char is a digit.
-bool isDigit(char_type c);
+/// return true if a unicode char is a numeral.
+bool isNumber(char_type c);
 
 /// return whether \p c is a digit in the ASCII range
 bool isDigitASCII(char_type c);
 
+/// return whether \p c is alpha or a digit in the ASCII range
+bool isAlnumASCII(char_type c);
+
+/// return whether \p c is in the ASCII range
+bool isASCII(char_type c);
+
 } // namespace lyx
 
 #endif // TEXTUTILS_H