You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kamailio/modules/jansson/jansson_path.h

18 lines
413 B

/*
* Copyright (c) 2012 Rogerz Zhang <rogerz.zhang@gmail.com>
*
* Jansson is free software; you can redistribute it and/or modify
* it under the terms of the MIT license.
*/
#ifndef _JANSSON_FUNCS_H_
#define _JANSSON_FUNCS_H_
#include <jansson.h>
json_t *json_path_get(const json_t *json, const char *path);
int json_path_set(json_t *json, const char *path, json_t *value, unsigned int append);
#endif