| 41 |
/* This module contains the external function pcre_config(). */ |
/* This module contains the external function pcre_config(). */ |
| 42 |
|
|
| 43 |
|
|
| 44 |
|
#ifdef HAVE_CONFIG_H |
| 45 |
|
#include <config.h> |
| 46 |
|
#endif |
| 47 |
|
|
| 48 |
#include "pcre_internal.h" |
#include "pcre_internal.h" |
| 49 |
|
|
| 50 |
|
|
| 87 |
*((int *)where) = NEWLINE; |
*((int *)where) = NEWLINE; |
| 88 |
break; |
break; |
| 89 |
|
|
| 90 |
|
case PCRE_CONFIG_BSR: |
| 91 |
|
#ifdef BSR_ANYCRLF |
| 92 |
|
*((int *)where) = 1; |
| 93 |
|
#else |
| 94 |
|
*((int *)where) = 0; |
| 95 |
|
#endif |
| 96 |
|
break; |
| 97 |
|
|
| 98 |
case PCRE_CONFIG_LINK_SIZE: |
case PCRE_CONFIG_LINK_SIZE: |
| 99 |
*((int *)where) = LINK_SIZE; |
*((int *)where) = LINK_SIZE; |
| 100 |
break; |
break; |