| 86 |
fprintf(f, |
fprintf(f, |
| 87 |
"This file contains the default tables for characters with codes less than\n" |
"This file contains the default tables for characters with codes less than\n" |
| 88 |
"128 (ASCII characters). These tables are used when no external tables are\n" |
"128 (ASCII characters). These tables are used when no external tables are\n" |
| 89 |
"passed to PCRE. */\n\n" |
"passed to PCRE.\n\n"); |
| 90 |
|
fprintf(f, |
| 91 |
|
"The following #include is present because without it gcc 4.x may remove\n" |
| 92 |
|
"the array definition from the final binary if PCRE is built into a static\n" |
| 93 |
|
"library and dead code stripping is activated. This leads to link errors.\n" |
| 94 |
|
"Pulling in the header ensures that the array gets flagged as \"someone\n" |
| 95 |
|
"outside this compilation unit might reference this\" and so it will always\n" |
| 96 |
|
"be supplied to the linker. */\n\n" |
| 97 |
|
"#include \"pcre_internal.h\"\n\n"); |
| 98 |
|
fprintf(f, |
| 99 |
"const unsigned char _pcre_default_tables[] = {\n\n" |
"const unsigned char _pcre_default_tables[] = {\n\n" |
| 100 |
"/* This table is a lower casing table. */\n\n"); |
"/* This table is a lower casing table. */\n\n"); |
| 101 |
|
|