blob: 28295ba2a23e6638d4cb4b080cc94244b5ea3930 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|