X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fstrcspn.c;h=9a191cd17211a1efe9a7f0d2bfaabc55923f6d04;hb=58dc681a9b810db4f7fc8b47d6c216bb169b7da4;hp=3cee66424c5a8ef21d7d08b5c2c4772e8708ceeb;hpb=cfbada19810991d0031d4546df8a829db9bdf01d;p=gnulib.git diff --git a/lib/strcspn.c b/lib/strcspn.c index 3cee66424..9a191cd17 100644 --- a/lib/strcspn.c +++ b/lib/strcspn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1994, 1996, 1997 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -11,23 +11,23 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + along with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#ifdef HAVE_CONFIG_H -#include +#if HAVE_CONFIG_H +# include #endif -#ifdef HAVE_STRING_H -#include +#if HAVE_STRING_H +# include #else -#include -#ifndef strchr -#define strchr index -#endif +# include +# ifndef strchr +# define strchr index +# endif #endif -/* Return the length of the maximum inital segment of S +/* Return the length of the maximum initial segment of S which contains no characters from REJECT. */ int strcspn (s, reject)