strpbrk.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* strpbrk.c - string search, string */
  2. /* Copyright 1992-1993 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01c,25feb93,jdi  documentation cleanup for 5.1.
  7. 01b,20sep92,smb  documentation additions
  8. 01a,08jul92,smb  written and documented.
  9. */
  10. /*
  11. DESCRIPTION
  12. INCLUDE FILES: string.h
  13. SEE ALSO: American National Standard X3.159-1989
  14. NOMANUAL
  15. */
  16. #include "vxWorks.h"
  17. #include "string.h"
  18. /*******************************************************************************
  19. *
  20. * strpbrk - find the first occurrence in a string of a character from a given set (ANSI)
  21. *
  22. * This routine locates the first occurrence in string <s1> of any character
  23. * from string <s2>.
  24. *
  25. * INCLUDE FILES: string.h
  26. *
  27. * RETURNS:
  28. * A pointer to the character found in <s1>, or
  29. * NULL if no character from <s2> occurs in <s1>.
  30. *
  31. * SEE ALSO: strcspn()
  32. */
  33. char * strpbrk
  34.     (
  35.     const char * s1,       /* string to search */
  36.     const char * s2        /* set of characters to look for in <s1> */
  37.     )
  38.     {
  39.     char *scanp;
  40.     int   c;
  41.     int   sc;
  42.     while ((c = *s1++) != 0) /* wait until end of string */
  43. {
  44. /* loop, searching for character */
  45. for (scanp = CHAR_FROM_CONST(s2); (sc = *scanp++) != 0;)
  46.     {
  47.     if (sc == c)
  48. return (CHAR_FROM_CONST(s1 - 1));
  49.     }
  50. }
  51.     return (NULL);
  52.     }