From 9fa704d5c067d766df8e7cf9b35fa029b0b6770a Mon Sep 17 00:00:00 2001 From: Johannes Hofmann Date: Sun, 23 Nov 2008 12:12:26 +0100 Subject: add strsep replacement from glibc --- src/strsep.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/strsep.h (limited to 'src/strsep.h') 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 + * + * 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 -- cgit v1.2.3