strsep.c
上传用户:pycemail
上传日期:2007-01-04
资源大小:329k
文件大小:2k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. /* Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
  2. This library is free software; you can redistribute it and/or
  3. modify it under the terms of the GNU Library General Public License as
  4. published by the Free Software Foundation; either version 2 of the
  5. License, or (at your option) any later version.
  6. This library is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  9. Library General Public License for more details.
  10. You should have received a copy of the GNU Library General Public
  11. License along with this library; see the file COPYING.LIB.  If
  12. not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite
  13. 330, Boston, MA  02111-1307, USA.  */
  14. /* Required to tell conf.h not to include the standard ProFTPD
  15.  * header files
  16.  */
  17. #define __PROFTPD_SUPPORT_LIBRARY
  18. #include <conf.h>
  19. #include <libsupp.h>
  20. #undef _LIBC
  21. #undef __GNU_LIBRARY__
  22. #if defined (_LIBC) || !defined (__GNU_LIBRARY__)
  23. #if !defined(__GNU_LIBRARY__) && !defined(STDC_HEADERS)
  24. extern int errno;
  25. #endif
  26. #ifndef HAVE_STRSEP
  27. /* Match STRING against the filename pattern PATTERN, returning zero if
  28.    it matches, nonzero if not.  */
  29. char *strsep(char **stringp, const char *delim)
  30. {
  31.   char *res;
  32.   if(!stringp || !*stringp || !**stringp)
  33.     return (char*)0;
  34.   res = *stringp;
  35.   while(**stringp && !strchr(delim,**stringp))
  36.     (*stringp)++;
  37.   
  38.   if(**stringp) {
  39.     **stringp = '';
  40.     (*stringp)++;
  41.   }
  42.   return res;
  43. }
  44. #endif  /* HAVE_STRSEP */
  45. #endif /* _LIBC or not __GNU_LIBRARY__.  */