Blame lib/isblank.c

Packit Service fdd496
/* Test whether a character is a blank.
Packit Service fdd496
Packit Service fdd496
   Copyright (C) 2009-2017 Free Software Foundation, Inc.
Packit Service fdd496
Packit Service fdd496
   This program is free software: you can redistribute it and/or modify
Packit Service fdd496
   it under the terms of the GNU General Public License as published by
Packit Service fdd496
   the Free Software Foundation; either version 3 of the License, or
Packit Service fdd496
   (at your option) any later version.
Packit Service fdd496
Packit Service fdd496
   This program is distributed in the hope that it will be useful,
Packit Service fdd496
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service fdd496
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service fdd496
   GNU General Public License for more details.
Packit Service fdd496
Packit Service fdd496
   You should have received a copy of the GNU General Public License
Packit Service fdd496
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
Packit Service fdd496
Packit Service fdd496
#include <config.h>
Packit Service fdd496
Packit Service fdd496
/* Specification.  */
Packit Service fdd496
#include <ctype.h>
Packit Service fdd496
Packit Service fdd496
int
Packit Service fdd496
isblank (int c)
Packit Service fdd496
{
Packit Service fdd496
  /* On all known platforms, in all predefined locales, isblank(c) is likely
Packit Service fdd496
     equivalent with  (c == ' ' || c == '\t').  Look at the glibc definition
Packit Service fdd496
     (in glibc/localedata/locales/i18n): The "blank" characters are '\t', ' ',
Packit Service fdd496
     U+1680, U+180E, U+2000..U+2006, U+2008..U+200A, U+205F, U+3000, and none
Packit Service fdd496
     except the first two is present in a common 8-bit encoding.  Therefore
Packit Service fdd496
     the substitute for other platforms is not more complicated than this.  */
Packit Service fdd496
  return (c == ' ' || c == '\t');
Packit Service fdd496
}