2020-09-30 16:53:55 +02:00

19 lines
241 B
C

/* reentrant strtok */
#pragma once
#if defined(__cplusplus)
extern "C"
{
#endif
char * __cdecl strtok_r (
char * string,
const char * control,
char ** nextoken
);
#if defined(__cplusplus)
} /* extern "C" */
#endif