]> jfr.im git - solanum.git/blobdiff - include/match.h
Remove tier 4 (tier 3 is basically "everything but")
[solanum.git] / include / match.h
index 9b6fb882652f2b1989087250f16d745bffd7e6d9..c49e12e9fc55460206843e7e231a2400dc110bab 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  ircd-ratbox: A slightly useful ircd.
- *  irc_string.h: A header for the ircd string functions.
+ *  match.h: A header for the ircd string functions.
  *
  *  Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
  *  Copyright (C) 1996-2002 Hybrid Development Team
@@ -20,8 +20,6 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
  *  USA
- *
- *  $Id: irc_string.h 3538 2007-07-26 14:21:57Z jilles $
  */
 
 #ifndef INCLUDED_match_h
@@ -83,11 +81,11 @@ extern char *canonize(char *);
 /*
  * character macros
  */
-extern const unsigned char ToLowerTab[];
-#define ToLower(c) (ToLowerTab[(unsigned char)(c)])
+extern const unsigned char irctolower_tab[];
+#define irctolower(c) (irctolower_tab[(unsigned char)(c)])
 
-extern const unsigned char ToUpperTab[];
-#define ToUpper(c) (ToUpperTab[(unsigned char)(c)])
+extern const unsigned char irctoupper_tab[];
+#define irctoupper(c) (irctoupper_tab[(unsigned char)(c)])
 
 extern const unsigned int CharAttrs[];
 
@@ -139,4 +137,26 @@ extern const unsigned int CharAttrs[];
 #define IsNonEOS(c) (CharAttrs[(unsigned char)(c)] & NONEOS_C)
 #define IsEol(c) (CharAttrs[(unsigned char)(c)] & EOL_C)
 
+
+/* Below are used for radix trees and the like */
+static inline void irccasecanon(char *str)
+{
+        while (*str)
+        {
+                *str = irctoupper(*str);
+                str++;
+        }
+        return;
+}
+
+static inline void strcasecanon(char *str)
+{
+        while (*str)
+        {
+                *str = toupper((unsigned char)*str);
+                str++;
+        }
+        return;
+}
+
 #endif /* INCLUDED_match_h */