mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
8 lines
210 B
C
8 lines
210 B
C
/* 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);
|