X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=include%2Fyaz%2Fjson.h;h=aab0159726a15b1999be28e5fcdbf838d3a99f32;hp=c30f10cc5ed8f664dfadcc1a8c4d3e578fe4e9cc;hb=d2ed898832ae354c17254ff52c70c92278518efe;hpb=99a9c51b93fd45748c78ace834345f2921c94d88 diff --git a/include/yaz/json.h b/include/yaz/json.h index c30f10c..aab0159 100644 --- a/include/yaz/json.h +++ b/include/yaz/json.h @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2012 Index Data. + * Copyright (C) 1995-2013 Index Data. * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -53,8 +53,8 @@ enum json_node_type { struct json_node { enum json_node_type type; union { - char *string; - double number; + char *string; + double number; struct json_node *link[2]; } u; }; @@ -86,7 +86,7 @@ struct json_node *json_parser_parse(json_parser_t p, const char *json_str); /** \brief returns parser error \param p JSON parser handle - \returns parse error msg + \returns parse error msg This function should be called if json_parser_parse returns NULL . */