2013-08-16 16:38:16 +02:00
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <string.h>
|
|
|
|
|
2019-06-13 12:34:25 +02:00
|
|
|
int
|
|
|
|
main ()
|
2013-08-16 16:38:16 +02:00
|
|
|
{
|
|
|
|
char *found;
|
|
|
|
char **stringp;
|
|
|
|
const char *delim;
|
|
|
|
|
2019-06-13 12:34:25 +02:00
|
|
|
found = strsep (stringp, delim);
|
2013-08-16 16:38:16 +02:00
|
|
|
}
|