diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-07-07 11:49:48 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-07-07 15:25:55 +0200 |
commit | 7568345034f2890af745747783c5abfbf6eccf0f (patch) | |
tree | 711cb1a32730435553d00fe2b1fcc222d5bcc803 /src/shared/time-util.h | |
parent | a940778fb1dd16479f455bab3ac6cbdbc5b06165 (diff) |
shared: make timezone and locale enumeration and validation generic
This way we can reuse it other code thatn just localectl/localed +
timedatectl/timedated.
Diffstat (limited to 'src/shared/time-util.h')
-rw-r--r-- | src/shared/time-util.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shared/time-util.h b/src/shared/time-util.h index 34ba6c11be..792cd27489 100644 --- a/src/shared/time-util.h +++ b/src/shared/time-util.h @@ -95,3 +95,6 @@ int parse_sec(const char *t, usec_t *usec); int parse_nsec(const char *t, nsec_t *nsec); bool ntp_synced(void); + +int get_timezones(char ***l); +bool timezone_is_valid(const char *name); |