mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
8099050c71
This is the result of running $ uncrustify --replace --config ../devel/uncrustify.cfg *.c *.h in the compat directory
12 lines
155 B
C
12 lines
155 B
C
#define _GNU_SOURCE
|
|
#include <string.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
char *found;
|
|
char **stringp;
|
|
const char *delim;
|
|
|
|
found = strsep (stringp, delim);
|
|
}
|