Blame gl/tests/ctype.in.h

Packit Service 4684c1
/* A substitute for ISO C99 <ctype.h>, for platforms on which it is incomplete.
Packit Service 4684c1
Packit Service 4684c1
   Copyright (C) 2009-2020 Free Software Foundation, Inc.
Packit Service 4684c1
Packit Service 4684c1
   This program is free software; you can redistribute it and/or modify
Packit Service 4684c1
   it under the terms of the GNU General Public License as published by
Packit Service 4684c1
   the Free Software Foundation; either version 3, or (at your option)
Packit Service 4684c1
   any later version.
Packit Service 4684c1
Packit Service 4684c1
   This program is distributed in the hope that it will be useful,
Packit Service 4684c1
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 4684c1
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service 4684c1
   GNU General Public License for more details.
Packit Service 4684c1
Packit Service 4684c1
   You should have received a copy of the GNU General Public License
Packit Service 4684c1
   along with this program; if not, see <https://www.gnu.org/licenses/>.  */
Packit Service 4684c1
Packit Service 4684c1
/* Written by Bruno Haible.  */
Packit Service 4684c1
Packit Service 4684c1
/*
Packit Service 4684c1
 * ISO C 99 <ctype.h> for platforms on which it is incomplete.
Packit Service 4684c1
 * <https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html>
Packit Service 4684c1
 */
Packit Service 4684c1
Packit Service 4684c1
#ifndef _@GUARD_PREFIX@_CTYPE_H
Packit Service 4684c1
Packit Service 4684c1
#if __GNUC__ >= 3
Packit Service 4684c1
@PRAGMA_SYSTEM_HEADER@
Packit Service 4684c1
#endif
Packit Service 4684c1
@PRAGMA_COLUMNS@
Packit Service 4684c1
Packit Service 4684c1
/* Include the original <ctype.h>.  */
Packit Service 4684c1
/* The include_next requires a split double-inclusion guard.  */
Packit Service 4684c1
#@INCLUDE_NEXT@ @NEXT_CTYPE_H@
Packit Service 4684c1
Packit Service 4684c1
#ifndef _@GUARD_PREFIX@_CTYPE_H
Packit Service 4684c1
#define _@GUARD_PREFIX@_CTYPE_H
Packit Service 4684c1
Packit Service 4684c1
/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */
Packit Service 4684c1
Packit Service 4684c1
/* The definition of _GL_WARN_ON_USE is copied here.  */
Packit Service 4684c1
Packit Service 4684c1
/* Return non-zero if c is a blank, i.e. a space or tab character.  */
Packit Service 4684c1
#if @GNULIB_ISBLANK@
Packit Service 4684c1
# if !@HAVE_ISBLANK@
Packit Service 4684c1
_GL_EXTERN_C int isblank (int c);
Packit Service 4684c1
# endif
Packit Service 4684c1
#elif defined GNULIB_POSIXCHECK
Packit Service 4684c1
# undef isblank
Packit Service 4684c1
# if HAVE_RAW_DECL_ISBLANK
Packit Service 4684c1
_GL_WARN_ON_USE (isblank, "isblank is unportable - "
Packit Service 4684c1
                 "use gnulib module isblank for portability");
Packit Service 4684c1
# endif
Packit Service 4684c1
#endif
Packit Service 4684c1
Packit Service 4684c1
#endif /* _@GUARD_PREFIX@_CTYPE_H */
Packit Service 4684c1
#endif /* _@GUARD_PREFIX@_CTYPE_H */