You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

json_c_version.c 363 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2012 Eric Haszlakiewicz
  3. *
  4. * This library is free software; you can redistribute it and/or modify
  5. * it under the terms of the MIT license. See COPYING for details.
  6. */
  7. #include "config.h"
  8. #include "json_c_version.h"
  9. const char *json_c_version(void)
  10. {
  11. return JSON_C_VERSION;
  12. }
  13. int json_c_version_num(void)
  14. {
  15. return JSON_C_VERSION_NUM;
  16. }