예제 #1
0
파일: curl_json.c 프로젝트: karcaw/collectd
static int cj_cb_end_map (void *ctx)
{
    return cj_cb_end (ctx);
}
예제 #2
0
파일: curl_json.c 프로젝트: karcaw/collectd
static int cj_cb_end_array (void * ctx)
{
    cj_t *db = (cj_t *)ctx;
    db->state[db->depth].in_array = 0;
    return cj_cb_end (ctx);
}
예제 #3
0
파일: curl_json.c 프로젝트: gnosek/collectd
static int cj_cb_end_array (void * ctx)
{
  return cj_cb_end (ctx);
}