11 lines
193 B
C
11 lines
193 B
C
|
|
#pragma once
|
||
|
|
#ifndef _STRSEP_GNU
|
||
|
|
#define _STRSEP_GNU
|
||
|
|
|
||
|
|
#include <strings.h>
|
||
|
|
|
||
|
|
extern char *strsep_gnu (char **__restrict __stringp,
|
||
|
|
const char *__restrict __delim);
|
||
|
|
|
||
|
|
#endif /* _STRSEP_GNU */
|