| Directory: | ./ |
|---|---|
| File: | submodules/json-c/json_c_version.c |
| Date: | 2023-09-29 04:53:15 |
| Exec | Total | Coverage | |
|---|---|---|---|
| Lines: | 0 | 4 | 0.0% |
| Branches: | 0 | 0 | -% |
| Line | Branch | Exec | Source |
|---|---|---|---|
| 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 | |||
| 9 | #include "json_c_version.h" | ||
| 10 | |||
| 11 | ✗ | const char *json_c_version(void) | |
| 12 | { | ||
| 13 | ✗ | return JSON_C_VERSION; | |
| 14 | } | ||
| 15 | |||
| 16 | ✗ | int json_c_version_num(void) | |
| 17 | { | ||
| 18 | ✗ | return JSON_C_VERSION_NUM; | |
| 19 | } | ||
| 20 |