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_parser.h | |
parent | f00b80a511245c5026d1f912442c2198963c3336 (diff) | |
download | php-git-e18dd67975d2c00974c8cbb8ccdf1b8093a43ed4.tar.gz |
Move json encoding stuff
Diffstat (limited to 'ext/json/php_json_parser.h')
-rw-r--r-- | ext/json/php_json_parser.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/json/php_json_parser.h b/ext/json/php_json_parser.h index 3e3836248c..7912b79b9c 100644 --- a/ext/json/php_json_parser.h +++ b/ext/json/php_json_parser.h @@ -16,8 +16,8 @@ +----------------------------------------------------------------------+ */ -#ifndef PHP_JSOND_PARSER_H -#define PHP_JSOND_PARSER_H +#ifndef PHP_JSON_PARSER_H +#define PHP_JSON_PARSER_H #include "php.h" #include "php_json_scanner.h" @@ -38,5 +38,5 @@ php_json_error_code php_json_parser_error_code(php_json_parser *parser); int php_json_yyparse(php_json_parser *parser); -#endif /* PHP_JSOND_PARSER_H */ +#endif /* PHP_JSON_PARSER_H */ |