* @brief Get the human readable version string for libgpiod API
* @return String containing the library version.
*/
-const ::std::string& version_string();
+const ::std::string& api_version();
/**
* @}
return ::gpiod_is_gpiochip_device(path.c_str());
}
-GPIOD_CXX_API const ::std::string& version_string()
+GPIOD_CXX_API const ::std::string& api_version()
{
- static const ::std::string version(::gpiod_version_string());
+ static const ::std::string version(::gpiod_api_version());
return version;
}
}
}
-TEST_CASE("version_string() returns a valid API version", "[misc]")
+TEST_CASE("api_version() returns a valid API version", "[misc]")
{
- SECTION("check version_string() format")
+ SECTION("check api_version() format")
{
- REQUIRE_THAT(::gpiod::version_string(),
+ REQUIRE_THAT(::gpiod::api_version(),
regex_matcher("^[0-9][1-9]?\\.[0-9][1-9]?([\\.0-9]?|\\-devel)$"));
}
}
return NULL;
ret = PyModule_AddStringConstant(module, "api_version",
- gpiod_version_string());
+ gpiod_api_version());
if (ret) {
Py_DECREF(module);
return NULL;
/// Get the API version of the libgpiod library as a human-readable string.
pub fn libgpiod_version() -> Result<&'static str> {
// SAFETY: The string returned by libgpiod is guaranteed to live forever.
- let version = unsafe { gpiod::gpiod_version_string() };
+ let version = unsafe { gpiod::gpiod_api_version() };
if version.is_null() {
return Err(Error::NullString("GPIO library version"));
* version. The pointer is valid for the lifetime of the program and
* must not be freed by the caller.
*/
-const char *gpiod_version_string(void);
+const char *gpiod_api_version(void);
/**
* @}
return gpiod_check_gpiochip_device(path, false);
}
-GPIOD_API const char *gpiod_version_string(void)
+GPIOD_API const char *gpiod_api_version(void)
{
return GPIOD_VERSION_STR;
}
const gchar *ver;
gboolean ret;
- ver = gpiod_version_string();
+ ver = gpiod_api_version();
g_assert_nonnull(ver);
gpiod_test_return_if_failed();
void print_version(void)
{
printf("%s (libgpiod) v%s\n",
- program_invocation_short_name, gpiod_version_string());
+ program_invocation_short_name, gpiod_api_version());
printf("Copyright (C) 2017-2018 Bartosz Golaszewski\n");
printf("License: GPL-2.0-or-later\n");
printf("This is free software: you are free to change and redistribute it.\n");