Add const qualifier to the json_tokener_parse functions

Eric Haszlakiewicz, EHASZLA at transunion dot com



git-svn-id: http://svn.metaparadigm.com/svn/json-c/trunk@42 327403b1-1117-474d-bef2-5cb71233fd97
This commit is contained in:
Christopher Watford
2009-07-08 04:02:05 +00:00
parent 543bb1431f
commit b1a22ac85f
2 changed files with 9 additions and 9 deletions

View File

@@ -87,9 +87,9 @@ extern const char* json_tokener_errors[];
extern struct json_tokener* json_tokener_new(void);
extern void json_tokener_free(struct json_tokener *tok);
extern void json_tokener_reset(struct json_tokener *tok);
extern struct json_object* json_tokener_parse(char *str);
extern struct json_object* json_tokener_parse(const char *str);
extern struct json_object* json_tokener_parse_ex(struct json_tokener *tok,
char *str, int len);
const char *str, int len);
#ifdef __cplusplus
}