Imported Upstream version 2.2.15
[platform/upstream/gpg2.git] / common / isascii.c
1 /* isascii.c - Replacement for isascii.
2  * Copyright (C) 2002 Free Software Foundation, Inc.
3  *
4  * This file is free software; as a special exception the author gives
5  * unlimited permission to copy and/or distribute it, with or without
6  * modifications, as long as this notice is preserved.
7  *
8  * This file is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
10  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11  */
12
13 #ifdef HAVE_CONFIG_H
14 #include <config.h>
15 #endif
16
17 int
18 isascii (int c)
19 {
20   return (((c) & ~0x7f) == 0);
21 }