Current Path: > > > usr > include > json-c
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
arraylist.h | File | 1557 bytes | March 06 2018 04:18:59. | |
bits.h | File | 755 bytes | March 06 2018 04:18:59. | |
debug.h | File | 1724 bytes | March 06 2018 04:18:59. | |
json.h | File | 810 bytes | March 06 2018 04:18:59. | |
json_c_version.h | File | 1184 bytes | March 06 2018 04:18:59. | |
json_config.h | File | 163 bytes | April 18 2022 14:42:41. | |
json_inttypes.h | File | 350 bytes | March 06 2018 04:18:59. | |
json_object.h | File | 37992 bytes | March 06 2018 04:18:59. | |
json_object_iterator.h | File | 8274 bytes | March 06 2018 04:18:59. | |
json_pointer.h | File | 4832 bytes | March 06 2018 04:18:59. | |
json_tokener.h | File | 7092 bytes | March 06 2018 04:18:59. | |
json_util.h | File | 2997 bytes | March 06 2018 04:18:59. | |
json_visit.h | File | 3181 bytes | March 06 2018 04:18:59. | |
linkhash.h | File | 11151 bytes | March 06 2018 04:18:59. | |
printbuf.h | File | 3858 bytes | March 06 2018 04:18:59. |
/* * Copyright (c) 2012,2017 Eric Haszlakiewicz * * This library is free software; you can redistribute it and/or modify * it under the terms of the MIT license. See COPYING for details. */ /** * @file * @brief Methods for retrieving the json-c version. */ #ifndef _json_c_version_h_ #define _json_c_version_h_ #define JSON_C_MAJOR_VERSION 0 #define JSON_C_MINOR_VERSION 13 #define JSON_C_MICRO_VERSION 01 #define JSON_C_VERSION_NUM ((JSON_C_MAJOR_VERSION << 16) | \ (JSON_C_MINOR_VERSION << 8) | \ JSON_C_MICRO_VERSION) #define JSON_C_VERSION "0.13.1" /** * @see JSON_C_VERSION * @return the version of the json-c library as a string */ const char *json_c_version(void); /* Returns JSON_C_VERSION */ /** * The json-c version encoded into an int, with the low order 8 bits * being the micro version, the next higher 8 bits being the minor version * and the next higher 8 bits being the major version. * For example, 7.12.99 would be 0x00070B63. * * @see JSON_C_VERSION_NUM * @return the version of the json-c library as an int */ int json_c_version_num(void); /* Returns JSON_C_VERSION_NUM */ #endif
SILENT KILLER Tool