summaryrefslogtreecommitdiffstats
path: root/innbbsd/antisplam.h
diff options
context:
space:
mode:
Diffstat (limited to 'innbbsd/antisplam.h')
-rw-r--r--innbbsd/antisplam.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/innbbsd/antisplam.h b/innbbsd/antisplam.h
index 30289da1..f72f5348 100644
--- a/innbbsd/antisplam.h
+++ b/innbbsd/antisplam.h
@@ -1,18 +1,5 @@
#define char_lower(c) ((c >= 'A' && c <= 'Z') ? c|32 : c)
-/*void
-str_lower(t, s)
- char *t, *s;*/
-void str_lower(char *t, char *s)
-{
- register char ch;
- do
- {
- ch = *s++;
- *t++ = char_lower(ch);
- } while (ch);
-}
-
#if 0 /* string.h , libc */
int
strcasestr(str, tag)