pike.git/
src/
pike_macros.h
Branch:
Tag:
Non-build tags
All tags
No tags
1998-05-17
1998-05-17 22:59:18 by Henrik Grubbström (Grubba) <grubba@grubba.org>
94eb31b7662b2ed399e7ab35bb0e1e113497185a (
7
lines) (+
6
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Added fallback macro from isgraph().
Rev: src/pike_macros.h:1.9
5:
\*/ /*
-
* $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:
#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__