| 493 CX_EXPORT void cxJsonDestroy(CxJson *json); |
493 CX_EXPORT void cxJsonDestroy(CxJson *json); |
| 494 |
494 |
| 495 /** |
495 /** |
| 496 * Destroys and re-initializes the JSON interface. |
496 * Destroys and re-initializes the JSON interface. |
| 497 * |
497 * |
| 498 * You might want to use this to reset the parser after |
498 * You must use this to reset the parser after encountering a syntax error |
| 499 * encountering a syntax error. |
499 * if you want to continue using it. |
| 500 * |
500 * |
| 501 * @param json the JSON interface |
501 * @param json the JSON interface |
| 502 */ |
502 */ |
| 503 cx_attr_nonnull |
503 cx_attr_nonnull |
| 504 CX_EXPORT void cxJsonReset(CxJson *json); |
504 CX_EXPORT void cxJsonReset(CxJson *json); |