Mercurial > hg > octave-nkf > gnulib-hg
annotate lib/strpbrk.c @ 2089:cd92072b7132
(strpbrk): Ansideclify.
Use `#if' instead of `#ifdef' for `HAVE_CONFIG_H'.
author | Jim Meyering <jim@meyering.net> |
---|---|
date | Fri, 07 Jan 2000 07:01:45 +0000 |
parents | 89f4c1937ac7 |
children | e34e6bd35c66 |
rev | line source |
---|---|
2089 | 1 /* Copyright (C) 1991, 1994, 2000 Free Software Foundation, Inc. |
494 | 2 NOTE: The canonical source of this file is maintained with the GNU C Library. |
3 Bugs can be reported to bug-glibc@prep.ai.mit.edu. | |
493 | 4 |
494 | 5 This program is free software; you can redistribute it and/or modify it |
6 under the terms of the GNU General Public License as published by the | |
7 Free Software Foundation; either version 2, or (at your option) any | |
8 later version. | |
493 | 9 |
494 | 10 This program is distributed in the hope that it will be useful, |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 GNU General Public License for more details. | |
493 | 14 |
494 | 15 You should have received a copy of the GNU General Public License |
649
89f4c1937ac7
update FSF address in copyright and remove any trailing blanks
Jim Meyering <jim@meyering.net>
parents:
494
diff
changeset
|
16 along with this program; if not, write to the Free Software Foundation, |
89f4c1937ac7
update FSF address in copyright and remove any trailing blanks
Jim Meyering <jim@meyering.net>
parents:
494
diff
changeset
|
17 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ |
493 | 18 |
2089 | 19 #if HAVE_CONFIG_H |
494 | 20 # include <config.h> |
21 #endif | |
493 | 22 |
23 /* Find the first ocurrence in S of any character in ACCEPT. */ | |
24 char * | |
2089 | 25 strpbrk (const char *s, const char *accept) |
493 | 26 { |
27 while (*s != '\0') | |
28 { | |
29 const char *a = accept; | |
30 while (*a != '\0') | |
31 if (*a++ == *s) | |
32 return (char *) s; | |
33 ++s; | |
34 } | |
35 | |
494 | 36 return 0; |
493 | 37 } |