| 32 |
// Unittest for scanner, especially GetNextComments and GetComments() |
// Unittest for scanner, especially GetNextComments and GetComments() |
| 33 |
// functionality. |
// functionality. |
| 34 |
|
|
| 35 |
|
#ifdef HAVE_CONFIG_H |
| 36 |
|
#include "config.h" |
| 37 |
|
#endif |
| 38 |
|
|
| 39 |
#include <stdio.h> |
#include <stdio.h> |
| 40 |
#include <string> |
#include <string> |
| 41 |
#include <vector> |
#include <vector> |
| 42 |
#include <pcre_stringpiece.h> |
|
| 43 |
#include <pcre_scanner.h> |
#include "pcrecpp.h" |
| 44 |
|
#include "pcre_stringpiece.h" |
| 45 |
|
#include "pcre_scanner.h" |
| 46 |
|
|
| 47 |
|
#ifdef HAVE_WINDOWS_H |
| 48 |
|
# define snprintf _snprintf |
| 49 |
|
#endif |
| 50 |
|
|
| 51 |
#define FLAGS_unittest_stack_size 49152 |
#define FLAGS_unittest_stack_size 49152 |
| 52 |
|
|