1 /*
2  * Copyright (c) 2012 Rogerz Zhang <rogerz.zhang@gmail.com>
3  *
4  * Jansson is free software; you can redistribute it and/or modify
5  * it under the terms of the MIT license.
6  */
7 
8 
9 #ifndef _JANSSON_PATH_H_
10 #define _JANSSON_PATH_H_
11 #include <jansson.h>
12 
13 json_t *json_path_get(const json_t *json, const char *path);
14 int json_path_set(json_t *json, const char *path, json_t *value, unsigned int append);
15 
16 #endif
17 
18