php-src/ext/json/JSON_parser.h
Omar Kilani 94a140214c - Rewritten for better performance. 3-8x faster encodes, 2-4x faster decodes.
- No longer uses json-c, implements it's own JSON parser and encoder.
- JSON parser based on Douglas Crockford's JSON_checker.
2006-01-31 08:59:06 +00:00

9 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);