aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CharClassify.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/CharClassify.h')
-rw-r--r--src/CharClassify.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/CharClassify.h b/src/CharClassify.h
index d746fe02d..e8b798ecb 100644
--- a/src/CharClassify.h
+++ b/src/CharClassify.h
@@ -8,6 +8,10 @@
#ifndef CHARCLASSIFY_H
#define CHARCLASSIFY_H
+#ifdef SCI_NAMESPACE
+namespace Scintilla {
+#endif
+
class CharClassify {
public:
CharClassify();
@@ -23,15 +27,8 @@ private:
unsigned char charClass[maxChar]; // not type cc to save space
};
-// These functions are implemented because each platform calls them something different.
-int CompareCaseInsensitive(const char *a, const char *b);
-int CompareNCaseInsensitive(const char *a, const char *b, size_t len);
-
-inline char MakeUpperCase(char ch) {
- if (ch < 'a' || ch > 'z')
- return ch;
- else
- return static_cast<char>(ch - 'a' + 'A');
+#ifdef SCI_NAMESPACE
}
+#endif
#endif