| 6 |
and semantics are as close as possible to those of the Perl 5 language. |
and semantics are as close as possible to those of the Perl 5 language. |
| 7 |
|
|
| 8 |
Written by Philip Hazel |
Written by Philip Hazel |
| 9 |
Copyright (c) 1997-2008 University of Cambridge |
Copyright (c) 1997-2009 University of Cambridge |
| 10 |
|
|
| 11 |
----------------------------------------------------------------------------- |
----------------------------------------------------------------------------- |
| 12 |
Redistribution and use in source and binary forms, with or without |
Redistribution and use in source and binary forms, with or without |
| 54 |
(even without the use of locales) and we want the output always to be the same, |
(even without the use of locales) and we want the output always to be the same, |
| 55 |
for testing purposes. This macro is used in pcretest as well as in this file. */ |
for testing purposes. This macro is used in pcretest as well as in this file. */ |
| 56 |
|
|
| 57 |
|
#ifdef EBCDIC |
| 58 |
|
#define PRINTABLE(c) ((c) >= 64 && (c) < 255) |
| 59 |
|
#else |
| 60 |
#define PRINTABLE(c) ((c) >= 32 && (c) < 127) |
#define PRINTABLE(c) ((c) >= 32 && (c) < 127) |
| 61 |
|
#endif |
| 62 |
|
|
| 63 |
/* The table of operator names. */ |
/* The table of operator names. */ |
| 64 |
|
|