JST: JSON tools
1.0.0
JSON tools dynamic library for reading, manipulating and writing JSON tree
|
#include "jstools.h"
#include "JST_private.h"
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
Go to the source code of this file.
Functions | |
JST_Error | JST_get (const char *jsonpath, JST_Element *root, JST_Element **dest) |
Search an element by its path. More... | |
JST_Error JST_get | ( | const char * | jsonpath, |
JST_Element * | root, | ||
JST_Element ** | dest | ||
) |
Search an element by its path.
jsonpath | syntax is (<name>|[<integer>])(.<name>|[<integer>])* |
element | the root of the search |
dest | an address of a pointer to the element found |
Definition at line 10 of file JST_get.c.