af_alg: recover better from crypto failures
[gnulib.git] / lib / strcspn.c
blob0e986033c13d01cb544f51d4131a6979031cbd81
1 /* Copyright (C) 1991, 1994, 1996-1997, 2002-2003, 2005-2006, 2009-2018 Free
2 * Software Foundation, Inc.
4 NOTE: The canonical source of this file is maintained with the GNU C Library.
5 Bugs can be reported to bug-glibc@gnu.org.
7 This program is free software: you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3 of the License, or any
10 later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <https://www.gnu.org/licenses/>. */
20 #include <config.h>
22 #include <stddef.h>
23 #include <string.h>
25 #undef strcspn
27 /* Return the length of the maximum initial segment of S
28 which contains no characters from REJECT. */
29 size_t
30 strcspn (const char *s, const char *reject)
32 size_t count = 0;
34 while (*s != '\0')
35 if (strchr (reject, *s++) == NULL)
36 ++count;
37 else
38 return count;
40 return count;