summaryrefslogtreecommitdiff
path: root/src/strsep.h
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-04-07 09:26:13 +0200
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-04-07 09:26:13 +0200
commit73b38c69e3dadacda33a2df00b3b5f62bc895256 (patch)
tree58548942978d4d16563b219b54c721995aa22794 /src/strsep.h
parent5d2caa8ff7585772e7d36ee4d958e0f46d0e3baf (diff)
bring in strsep() implementation
Diffstat (limited to 'src/strsep.h')
-rw-r--r--src/strsep.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/strsep.h b/src/strsep.h
new file mode 100644
index 0000000..28295ba
--- /dev/null
+++ b/src/strsep.h
@@ -0,0 +1,12 @@
+/*
+ * Copyright 2008 Johannes Hofmann <Johannes.Hofmann@gmx.de>
+ *
+ * This software may be used and distributed according to the terms
+ * of the GNU General Public License, incorporated herein by reference.
+ */
+
+#include "../config.h"
+
+#ifndef HAVE_STRSEP
+char * strsep (char **stringp, const char *delim);
+#endif