aboutsummaryrefslogtreecommitdiff
path: root/contrib/ipfilter/lib/findword.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ipfilter/lib/findword.c')
-rw-r--r--contrib/ipfilter/lib/findword.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/contrib/ipfilter/lib/findword.c b/contrib/ipfilter/lib/findword.c
deleted file mode 100644
index e06f213c0540..000000000000
--- a/contrib/ipfilter/lib/findword.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Copyright (C) 2012 by Darren Reed.
- *
- * See the IPFILTER.LICENCE file for details on licencing.
- *
- * $Id: findword.c,v 1.3.4.1 2012/07/22 08:04:24 darren_r Exp $
- */
-
-#include "ipf.h"
-
-
-wordtab_t *findword(words, name)
- wordtab_t *words;
- char *name;
-{
- wordtab_t *w;
-
- for (w = words; w->w_word != NULL; w++)
- if (!strcmp(name, w->w_word))
- break;
- if (w->w_word == NULL)
- return NULL;
-
- return w;
-}