mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-01-03 15:21:41 +01:00
13 lines
155 B
C
13 lines
155 B
C
|
#define _GNU_SOURCE
|
||
|
#include <string.h>
|
||
|
|
||
|
int
|
||
|
main ()
|
||
|
{
|
||
|
char *found;
|
||
|
char **stringp;
|
||
|
const char *delim;
|
||
|
|
||
|
found = strsep (stringp, delim);
|
||
|
}
|