~ubuntu-branches/ubuntu/raring/findutils/raring

« back to all changes in this revision

Viewing changes to gnulib/lib/rpmatch.c

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2005-07-04 11:37:37 UTC
  • mto: (11.1.1 lenny) (1.1.10 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20050704113737-oxfumqxsqgfz5gay
Tags: upstream-4.2.22
ImportĀ upstreamĀ versionĀ 4.2.22

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Determine whether string value is affirmation or negative response
2
2
   according to current locale's data.
3
 
   Copyright (C) 1996, 1998, 2000, 2002 Free Software Foundation, Inc.
 
3
   Copyright (C) 1996, 1998, 2000, 2002, 2003 Free Software Foundation, Inc.
4
4
 
5
5
   This program is free software; you can redistribute it and/or modify
6
6
   it under the terms of the GNU General Public License as published by
14
14
 
15
15
   You should have received a copy of the GNU General Public License
16
16
   along with this program; if not, write to the Free Software Foundation,
17
 
   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
17
   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
18
18
 
19
19
#if HAVE_CONFIG_H
20
20
# include <config.h>
21
21
#endif
22
22
 
23
 
#if STDC_HEADERS || _LIBC
24
 
# include <stddef.h>
25
 
# include <stdlib.h>
26
 
#else
27
 
# ifndef NULL
28
 
#  define NULL 0
29
 
# endif
30
 
#endif
 
23
#include <stddef.h>
 
24
#include <stdlib.h>
31
25
 
32
26
#if ENABLE_NLS
33
27
# include <sys/types.h>
34
 
# if HAVE_LIMITS_H
35
 
#  include <limits.h>
36
 
# endif
 
28
# include <limits.h>
37
29
# include <regex.h>
38
30
# include "gettext.h"
39
31
# define _(msgid) gettext (msgid)