summaryrefslogtreecommitdiffstats
path: root/sys/sys/ctype.h
diff options
context:
space:
mode:
authoriwasaki <iwasaki@FreeBSD.org>2002-11-27 18:09:20 +0000
committeriwasaki <iwasaki@FreeBSD.org>2002-11-27 18:09:20 +0000
commit05cb8cd7b7d41fa96a64a0f8b120806eb4fb0933 (patch)
tree4bace62f2c1b2923ceef90efb5b5547a7086ee61 /sys/sys/ctype.h
parent10fb1b40ac2c40a3ce01db48e82a02380186cda2 (diff)
downloadFreeBSD-src-05cb8cd7b7d41fa96a64a0f8b120806eb4fb0933.zip
FreeBSD-src-05cb8cd7b7d41fa96a64a0f8b120806eb4fb0933.tar.gz
Resolve conflicts arising from the ACPI CA 20021118 import.
Diffstat (limited to 'sys/sys/ctype.h')
-rw-r--r--sys/sys/ctype.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/sys/ctype.h b/sys/sys/ctype.h
index b306e85..212f6d8 100644
--- a/sys/sys/ctype.h
+++ b/sys/sys/ctype.h
@@ -52,6 +52,7 @@
#define isxdigit(c) (isdigit(c) \
|| ((c) >= 'A' && (c) <= 'F') \
|| ((c) >= 'a' && (c) <= 'f'))
+#define isprint(c) ((c) >= ' ' && (c) <= '~')
#define toupper(c) ((c) - 0x20 * (((c) >= 'a') && ((c) <= 'z')))
#define tolower(c) ((c) + 0x20 * (((c) >= 'A') && ((c) <= 'Z')))
OpenPOWER on IntegriCloud