diff options
Diffstat (limited to 'test-timezone.c')
-rw-r--r-- | test-timezone.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test-timezone.c b/test-timezone.c new file mode 100644 index 0000000..46e218a --- /dev/null +++ b/test-timezone.c @@ -0,0 +1,21 @@ +/* See LICENSE file for copyright and license details. */ +#include "test-common.h" + + +int +main(int argc, char *argv[]) +{ + struct libgeome_context ctx; + struct libgeome_data data; + + if (argc != 1) { + fprintf(stderr, "usage: %s", argv[0]); + return 1; + } + + test_common_init(&ctx, &data, argv[0]); + if (libgeome_get_from_timezone(&ctx, &data)) + return 1; + test_common_print(&data); + return 0; +} |