Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
241 B

  1. /* reentrant strtok */
  2. #pragma once
  3. #if defined(__cplusplus)
  4. extern "C"
  5. {
  6. #endif
  7. char * __cdecl strtok_r (
  8. char * string,
  9. const char * control,
  10. char ** nextoken
  11. );
  12. #if defined(__cplusplus)
  13. } /* extern "C" */
  14. #endif