This repository has been archived on 2023-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

22 lines
237 B
C

/*
* 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;
}