summaryrefslogtreecommitdiff
path: root/com32/lib/strsep.c
blob: 58a7a07773b4f0d23dc7bd38192ad40a6c50a9e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * strsep.c
 */

#include <string.h>

char *strsep(char **stringp, const char *delim)
{
  char *s = *stringp;
  char *e;

  if ( !s )
    return NULL;

  e = strpbrk(s, delim);
  if (e)
    *e++ = '\0';

  *stringp = e;
  return s;
}