source: trunk/libs/newlib/src/newlib/libc/string/strsep.c @ 577

Last change on this file since 577 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 406 bytes
Line 
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
11extern char *__strtok_r (char *, const char *, char **, int);
12
13char *
14strsep (register char **source_ptr,
15        register const char *delim)
16{
17        return __strtok_r (*source_ptr, delim, source_ptr, 0);
18}
Note: See TracBrowser for help on using the repository browser.