diff options
author | Jakub Zelenka <bukka@php.net> | 2014-11-24 20:46:13 +0000 |
---|---|---|
committer | Jakub Zelenka <bukka@php.net> | 2014-11-24 20:46:13 +0000 |
commit | e18dd67975d2c00974c8cbb8ccdf1b8093a43ed4 (patch) | |
tree | 9d442464c853d0bcc8e4ae63d4bdf81912a43067 /ext/json/php_json_scanner.h | |
parent | f00b80a511245c5026d1f912442c2198963c3336 (diff) | |
download | php-git-e18dd67975d2c00974c8cbb8ccdf1b8093a43ed4.tar.gz |
Move json encoding stuff
Diffstat (limited to 'ext/json/php_json_scanner.h')
-rw-r--r-- | ext/json/php_json_scanner.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/json/php_json_scanner.h b/ext/json/php_json_scanner.h index 69d21cfc5c..fbf65eac70 100644 --- a/ext/json/php_json_scanner.h +++ b/ext/json/php_json_scanner.h @@ -16,8 +16,8 @@ +----------------------------------------------------------------------+ */ -#ifndef PHP_JSOND_SCANNER_H -#define PHP_JSOND_SCANNER_H +#ifndef PHP_JSON_SCANNER_H +#define PHP_JSON_SCANNER_H #include "php.h" #include "php_json.h" @@ -43,5 +43,5 @@ typedef struct _php_json_scanner { void php_json_scanner_init(php_json_scanner *scanner, char *str, int str_len, long options); int php_json_scan(php_json_scanner *s); -#endif /* PHP_JSOND_SCANNER_H */ +#endif /* PHP_JSON_SCANNER_H */ |