Skip to content
Snippets Groups Projects
Commit 94eb31b7 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Added fallback macro from isgraph().

Rev: src/pike_macros.h:1.9
parent 0d4d5d64
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
\*/
/*
* $Id: pike_macros.h,v 1.8 1998/05/05 22:01:41 grubba Exp $
* $Id: pike_macros.h,v 1.9 1998/05/17 22:59:18 grubba Exp $
*/
#ifndef MACROS_H
#define MACROS_H
......@@ -48,6 +48,10 @@
#define isidchar(X) is8bitalnum(X)
#ifndef HAVE_ISGRAPH
#define isgraph(X) (ispunct(X) || isupper(X) || islower(X) || isdigit(X))
#endif /* !HAVE_ISGRAPH */
#define ALIGN_BOUND sizeof(char *)
#ifdef __GNUC__
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment