]> git.notmuchmail.org Git - notmuch/blob - compat/have_strsep.c
lib: Bump library version from 3.0.0 to 3.1.0
[notmuch] / 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 }