Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /* BSD strsep function */
  2.  
  3. /* Copyright 2002, Red Hat Inc. */
  4.  
  5. /* undef STRICT_ANSI so that strsep prototype will be defined */
  6. #undef  __STRICT_ANSI__
  7. #include <string.h>
  8. #include <_ansi.h>
  9. #include <reent.h>
  10.  
  11. extern char *__strtok_r (char *, const char *, char **, int);
  12.  
  13. char *
  14. _DEFUN (strsep, (source_ptr, delim),
  15.         register char **source_ptr _AND
  16.         register const char *delim)
  17. {
  18.         return __strtok_r (*source_ptr, delim, source_ptr, 0);
  19. }
  20.