mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 04:18:08 +01:00
f7130468d2
[dgit import orig notmuch_0.28.2.orig.tar.gz]
11 lines
153 B
C
11 lines
153 B
C
#define _GNU_SOURCE
|
|
#include <string.h>
|
|
|
|
int main()
|
|
{
|
|
char *found;
|
|
char **stringp;
|
|
const char *delim;
|
|
|
|
found = strsep(stringp, delim);
|
|
}
|