diff options
Diffstat (limited to 'include/json_lib.h')
-rw-r--r-- | include/json_lib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/json_lib.h b/include/json_lib.h index cdfcffad38a..567b04dbdc0 100644 --- a/include/json_lib.h +++ b/include/json_lib.h @@ -203,6 +203,7 @@ typedef struct st_json_engine_t enum json_value_types value_type; /* type of the value.*/ const uchar *value; /* Points to the value. */ const uchar *value_begin;/* Points to where the value starts in the JSON. */ + int value_escaped; /* Flag telling if the string value has escaping.*/ uint num_flags; /* the details of the JSON_VALUE_NUMBER, is it negative, or if it has the fractional part. See the enum json_num_flags. */ |