/
githubmirror
/
libfastjson
Обзор
Документация
Войти
/
githubmirror
/
libfastjson
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v0.99.0
json_c_version.c
19 строк
364 B
Eric Haszlakiewicz
Add a json_c_version.h header (included from json.h), and several macros and functions for retrieving the json-c version at compile-time and run-time.
23 дек 2012, 20:57
23 дек 2012, 20:57
1461b49
Код
Авторство
О чём код?
/* * Copyright (c) 2012 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. */ #include "config.h" #include "json_c_version.h" const char *json_c_version(void) { return JSON_C_VERSION; } int json_c_version_num(void) { return JSON_C_VERSION_NUM; }