strtok_r.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*-
  2. * Copyright (c) 1998 Softweyr LLC. All rights reserved.
  3. *
  4. * strtok_r, from Berkeley strtok
  5. * Oct 13, 1998 by Wes Peters <wes@softweyr.com>
  6. *
  7. * Copyright (c) 1988, 1993
  8. * The Regents of the University of California. All rights reserved.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notices, this list of conditions and the following disclaimer.
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notices, this list of conditions and the following disclaimer in the
  17. * documentation and/or other materials provided with the distribution.
  18. * 3. Neither the name of the University nor the names of its contributors
  19. * may be used to endorse or promote products derived from this software
  20. * without specific prior written permission.
  21. *
  22. * THIS SOFTWARE IS PROVIDED BY SOFTWEYR LLC, THE REGENTS AND CONTRIBUTORS
  23. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  24. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  25. * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTWEYR LLC, THE
  26. * REGENTS, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  27. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
  28. * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  29. * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  30. * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  31. * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  32. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  33. *
  34. * From: @(#)strtok.c 8.1 (Berkeley) 6/4/93
  35. */
  36. #ifdef HAVE_CONFIG_H
  37. #include <config.h>
  38. #endif
  39. #include "portability.h"
  40. char *
  41. pcap_strtok_r(char *s, const char *delim, char **last)
  42. {
  43. char *spanp, *tok;
  44. int c, sc;
  45. if (s == NULL && (s = *last) == NULL)
  46. return (NULL);
  47. /*
  48. * Skip (span) leading delimiters (s += strspn(s, delim), sort of).
  49. */
  50. cont:
  51. c = *s++;
  52. for (spanp = (char *)delim; (sc = *spanp++) != 0;) {
  53. if (c == sc)
  54. goto cont;
  55. }
  56. if (c == 0) { /* no non-delimiter characters */
  57. *last = NULL;
  58. return (NULL);
  59. }
  60. tok = s - 1;
  61. /*
  62. * Scan token (scan for delimiters: s += strcspn(s, delim), sort of).
  63. * Note that delim must have one NUL; we stop if we see that, too.
  64. */
  65. for (;;) {
  66. c = *s++;
  67. spanp = (char *)delim;
  68. do {
  69. if ((sc = *spanp++) == c) {
  70. if (c == 0)
  71. s = NULL;
  72. else
  73. s[-1] = '\0';
  74. *last = s;
  75. return (tok);
  76. }
  77. } while (sc != 0);
  78. }
  79. /* NOTREACHED */
  80. }