~ubuntu-branches/ubuntu/utopic/coreutils/utopic-proposed

« back to all changes in this revision

Viewing changes to lib/strpbrk.c

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2012-11-28 03:03:42 UTC
  • mfrom: (8.3.4 sid)
  • Revision ID: package-import@ubuntu.com-20121128030342-21zanj8354gas5gr
Tags: 8.20-3ubuntu1
* Resynchronise with Debian.  Remaining changes:
  - Make 'uname -i -p' return the real processor/hardware, instead of
    unknown.
  - Build-depend on gettext:any instead of on gettext, so that apt-get can
    properly resolve build-dependencies on the tool when cross-building.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 1991, 1994, 2000, 2002-2003, 2006, 2009-2012 Free Software
 
2
   Foundation, Inc.
 
3
 
 
4
   NOTE: The canonical source of this file is maintained with the GNU C Library.
 
5
   Bugs can be reported to bug-glibc@prep.ai.mit.edu.
 
6
 
 
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, or (at your option) any
 
10
   later version.
 
11
 
 
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.
 
16
 
 
17
   You should have received a copy of the GNU General Public License
 
18
   along with this program; if not, see <http://www.gnu.org/licenses/>.  */
 
19
 
 
20
#include <config.h>
 
21
 
 
22
#include <stddef.h>
 
23
#include <string.h>
 
24
 
 
25
#undef strpbrk
 
26
 
 
27
/* Find the first occurrence in S of any character in ACCEPT.  */
 
28
char *
 
29
strpbrk (const char *s, const char *accept)
 
30
{
 
31
  while (*s != '\0')
 
32
    {
 
33
      const char *a = accept;
 
34
      while (*a != '\0')
 
35
        if (*a++ == *s)
 
36
          return (char *) s;
 
37
      ++s;
 
38
    }
 
39
 
 
40
  return NULL;
 
41
}