blob: 085e776982c43f5593266bfac12eb61977ae6544 (
plain)
1
2
3
4
5
6
7
8
|
/* JSON_checker.h */
#include "php.h"
#include "ext/standard/php_smart_str.h"
static char digits[] = "0123456789abcdef";
extern int JSON_parser(zval *z, unsigned short p[], int length, int assoc TSRMLS_DC);
|