Goto: 4C Home | 4C Docs | 4C External Libraries Home | FCJSon Home | FCJSon Function List Free()

Free()

Purpose:
FCJSon::Free() frees the resources associated with one json object
Usage:
ret = FCJSon::Free(<jsonident>);
Arguments:

integer <jsonident> - A valid json object identifier.
Returns:
0 on success, -1 if <jsonident> is invalid.
Where Used:
FCJSon::Free() can be called from anywhere as long as you have a valid <jsonident>
Example:
Example
Description:
FCJSon::Free() frees the resources associated with one json object. Once freed, the <jsonident> cannot be used in calls to the FCJSon library.
Bugs/Features/Comments:
See Also:
FCJSon Function List


Back to Top