]> git.lyx.org Git - lyx.git/blobdiff - src/support/lstrings.h
Add quote style information to languages
[lyx.git] / src / support / lstrings.h
index eca670ea3d435f6b78c92f9825ee7489ea0f12a9..d0f74803658fdadeafb6161ebcf6b40516a1be14 100644 (file)
@@ -45,7 +45,9 @@ bool isStrUnsignedInt(std::string const & str);
 bool isStrDbl(std::string const & str);
 
 /// does the string contain a digit?
-bool hasDigit(docstring const & str);
+bool hasDigitASCII(docstring const & str);
+
+bool isHexChar(char_type);
 
 bool isHex(docstring const & str);
 
@@ -283,6 +285,9 @@ docstring const getStringFromVector(std::vector<docstring> const & vec,
 /// found, else -1. The last item in \p str must be "".
 int findToken(char const * const str[], std::string const & search_token);
 
+/// A test string that is supposed to be translated into the gettext code
+std::string const languageTestString();
+
 template <class Arg1>
 docstring bformat(docstring const & fmt, Arg1);