From 73b38c69e3dadacda33a2df00b3b5f62bc895256 Mon Sep 17 00:00:00 2001 From: Johannes Hofmann Date: Tue, 7 Apr 2009 09:26:13 +0200 Subject: bring in strsep() implementation --- 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