mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-11 19:25:43 +00:00
13 lines
257 B
C
13 lines
257 B
C
/* BSD strsep function */
|
|
|
|
/* Copyright 2002, Red Hat Inc. */
|
|
|
|
#include <string.h>
|
|
|
|
extern char *__strtok_r (char *, const char *, char **, int);
|
|
|
|
char *strsep(char **source_ptr,const char *delim)
|
|
{
|
|
return __strtok_r(*source_ptr, delim, source_ptr, 0);
|
|
}
|