cvsimport
[findutils.git] / lib / strspn.c
blob058d34c5f0f336037eb7a9b8ca900ced09117ab8
1 /* strspn.c -- return numbers of chars at start of string in a class
2 Copyright (C) 1987, 1990, 2004 Free Software Foundation, Inc.
4 This file is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
20 #ifdef HAVE_CONFIG_H
21 #include <config.h>
22 #endif
24 #if defined(HAVE_STRING_H)
25 #include <string.h>
26 #else
27 #include <strings.h>
28 #ifndef strchr
29 #define strchr index
30 #endif
31 #endif
33 #if !defined(HAVE_STRSPN)
34 int
35 strspn (str, class)
36 char *str, *class;
38 register char *st = str;
40 while (*st && strchr (class, *st))
41 ++st;
42 return st - str;
44 #endif