aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.am1
-rw-r--r--lib/arraymember.c33
-rw-r--r--lib/libpies.h2
3 files changed, 36 insertions, 0 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am
index e389846..89812ca 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -21,2 +21,3 @@ noinst_HEADERS = libpies.h
libpies_a_SOURCES=\
+ arraymember.c\
parsetime.c\
diff --git a/lib/arraymember.c b/lib/arraymember.c
new file mode 100644
index 0000000..14ace99
--- /dev/null
+++ b/lib/arraymember.c
@@ -0,0 +1,33 @@
+/* This file is part of GNU Pies.
+ Copyright (C) 2007, 2008, 2009, 2010, 2013 Sergey Poznyakoff
+
+ GNU Pies is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3, or (at your option)
+ any later version.
+
+ GNU Pies is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with GNU Pies. If not, see <http://www.gnu.org/licenses/>. */
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+#include <string.h>
+#include "libpies.h"
+
+int
+is_array_member (char * const * ar, char const *str)
+{
+ for (; *ar; ++ar)
+ {
+ if (strcmp (*ar, str) == 0)
+ return 1;
+ }
+ return 0;
+}
+
diff --git a/lib/libpies.h b/lib/libpies.h
index 97188b6..b9c8af7 100644
--- a/lib/libpies.h
+++ b/lib/libpies.h
@@ -58,2 +58,4 @@ int strtotok_ci (struct tokendef *tab, const char *str, int *pres);
int toktostr (struct tokendef *tab, int tok, const char **pres);
+
+int is_array_member (char * const * ar, char const *str);

Return to:

Send suggestions and report system problems to the System administrator.