]> rtime.felk.cvut.cz Git - notmuch.git/blob - compat/have_strsep.c
NEWS: deprecate notmuch deliver
[notmuch.git] / compat / have_strsep.c
1 #define _GNU_SOURCE
2 #include <string.h>
3
4 int main()
5 {
6     char *found;
7     char **stringp;
8     const char *delim;
9
10     found = strsep(stringp, delim);
11 }