]> git.lyx.org Git - lyx.git/blobdiff - src/support/textutils.h
MacOSX compile fix.
[lyx.git] / src / support / textutils.h
index 19867e79edbc85829ac36c76f3f6e6ee829d4a6d..42bbb36c9a333701ed969468f192d823a7dba40b 100644 (file)
 #ifndef TEXTUTILS_H
 #define TEXTUTILS_H
 
-/// return true if the char is a word separator
-inline
-bool IsSeparatorChar(char c)
-{
-       return c == ' ';
-}
-
+#include "support/types.h"
 
 /// return true if the char is a line separator
 inline
-bool IsLineSeparatorChar(char c)
+bool isLineSeparatorChar(lyx::char_type c)
 {
        return c == ' ';
 }
@@ -33,17 +27,17 @@ bool IsLineSeparatorChar(char c)
 
 /// return true if a char is alphabetical (including accented chars)
 inline
-bool IsLetterChar(unsigned char c)
+bool isLetterChar(lyx::char_type c)
 {
        return (c >= 'A' && c <= 'Z')
                || (c >= 'a' && c <= 'z')
-               || (c >= 192); // in iso-8859-x these are accented chars
+               || (c >= 192 && c < 256); // in iso-8859-x these are accented chars
 }
 
 
 /// return true if the char is printable (masked to 7-bit ASCII)
 inline
-bool IsPrintable(unsigned char c)
+bool isPrintable(lyx::char_type c)
 {
        return (c & 127) >= ' ';
 }
@@ -51,15 +45,14 @@ bool IsPrintable(unsigned char c)
 
 /// return true if the char is printable and not a space (masked to 7-bit ASCII)
 inline
-bool IsPrintableNonspace(unsigned char c)
+bool isPrintableNonspace(lyx::char_type c)
 {
-       return IsPrintable(c) && c != ' ';
+       return isPrintable(c) && c != ' ';
 }
 
-
-/// completely pointless FIXME
+/// return true if a unicode char is a digit.
 inline
-bool IsDigit(unsigned char ch)
+bool isDigit(lyx::char_type ch)
 {
        return ch >= '0' && ch <= '9';
 }