diff options
author | Adam <Adam@anope.org> | 2013-04-07 23:46:44 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-04-07 23:46:44 -0500 |
commit | fb7fef7a849342ab8463743497e781c5c3e6ae88 (patch) | |
tree | 5d230a68b6eed70c7b4f718410dd62fea779654c /include/hashcomp.h | |
parent | 36602224b8b1a11326a224779d16bcb12f0ed532 (diff) |
Optimizations of much of the more commonly used code
Diffstat (limited to 'include/hashcomp.h')
-rw-r--r-- | include/hashcomp.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/hashcomp.h b/include/hashcomp.h index 9ebc7ae81..38c0e3833 100644 --- a/include/hashcomp.h +++ b/include/hashcomp.h @@ -28,6 +28,10 @@ namespace Anope /* Casemap in use by Anope. ci::string's comparation functions use this (and thus Anope::string) */ extern std::locale casemap; + extern void CaseMapRebuild(); + extern unsigned char tolower(unsigned char); + extern unsigned char toupper(unsigned char); + /* ASCII case insensitive ctype. */ template<typename char_type> class ascii_ctype : public std::ctype<char_type> |