Get timezone information
Get timezone information from system settings
12345678910111213#include <system_settings.h>#include <dlog.h> // for logging purposesvoidcheck_timezone() {char *value;int ret;ret = system_settings_get_value_string(SYSTEM_SETTINGS_KEY_LOCALE_TIMEZONE, &value);if(ret == SYSTEM_SETTINGS_ERROR_NONE)LOGI("Timezone: %s", value);}