diff options
author | Nikias Bassen | 2024-02-05 11:47:06 +0100 |
---|---|---|
committer | Nikias Bassen | 2024-02-05 11:47:06 +0100 |
commit | 082b69db5dba8d53d828a0741eb5bcef10849951 (patch) | |
tree | 8a6069cfd0155cba3066ea981dd135f67db0355a /src | |
parent | 3daee6097cfa14c597e5104b02acfe83749001d9 (diff) | |
download | libplist-082b69db5dba8d53d828a0741eb5bcef10849951.tar.gz libplist-082b69db5dba8d53d828a0741eb5bcef10849951.tar.bz2 |
Add a libplist_version() function to the interface
Diffstat (limited to 'src')
-rw-r--r-- | src/plist.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/plist.c b/src/plist.c index e8f6974..2078520 100644 --- a/src/plist.c +++ b/src/plist.c @@ -1739,3 +1739,11 @@ void plist_print(plist_t plist) { plist_write_to_stream(plist, stdout, PLIST_FORMAT_PRINT, PLIST_OPT_PARTIAL_DATA); } + +const char* libplist_version() +{ +#ifndef PACKAGE_VERSION +#error PACKAGE_VERSION is not defined! +#endif + return PACKAGE_VERSION; +} |