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.
21 lines
364 B
21 lines
364 B
4 months ago
|
/*
|
||
|
* 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;
|
||
|
}
|
||
|
|