]> sourceware.org Git - glibc.git/blame - wcsmbs/wcscspn.c
update from main archive 960904
[glibc.git] / wcsmbs / wcscspn.c
CommitLineData
299a95b9 1/* Copyright (C) 1995, 1996 Free Software Foundation, Inc.
a482b5a5 2This file is part of the GNU C Library.
299a95b9 3Contributed by Ulrich Drepper, <drepper@gnu.ai.mit.edu>
a482b5a5
RM
4
5The GNU C Library is free software; you can redistribute it and/or
6modify it under the terms of the GNU Library General Public License as
7published by the Free Software Foundation; either version 2 of the
8License, or (at your option) any later version.
9
10The GNU C Library is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13Library General Public License for more details.
14
15You should have received a copy of the GNU Library General Public
16License along with the GNU C Library; see the file COPYING.LIB. If
17not, write to the Free Software Foundation, Inc., 675 Mass Ave,
18Cambridge, MA 02139, USA. */
19
299a95b9 20#include <wchar.h>
a482b5a5
RM
21
22
23/* Return the length of the maximum initial segment
24 of WCS which contains only wide-characters not in REJECT. */
25size_t
26wcscspn (wcs, reject)
299a95b9
RM
27 const wchar_t *wcs;
28 const wchar_t *reject;
a482b5a5
RM
29{
30 register size_t count = 0;
31
32 while (*wcs != L'\0')
33 if (wcschr (reject, *wcs++) == NULL)
34 ++count;
35 else
36 return count;
37
38 return count;
39}
This page took 0.044771 seconds and 5 git commands to generate.