forked from viking-gps/viking
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Copyright: CC0 | ||
// Compare timegm() with util_timegm() | ||
// NB Need to force util_timegm() to use our fallback version | ||
// Otherwise it will be using timegm() | ||
#include <glib.h> | ||
#include <glib/gstdio.h> | ||
#include <time.h> | ||
#include "util.h" | ||
|
||
// run like - 'for now': | ||
// ./test_time $(date +"%Y:%m:%d-%H:%M:%S") | ||
// Or manually substitute interesting dates as appropriate | ||
// e.g. '2400:03:01-10:11:12' | ||
int main(int argc, char *argv[]) | ||
{ | ||
#if !GLIB_CHECK_VERSION(2,36,0) | ||
g_type_init (); | ||
#endif | ||
|
||
if ( !argv[1] ) { | ||
g_printerr ( "Nothing specified\n" ); | ||
return 1; | ||
} | ||
|
||
struct tm Time; | ||
Time.tm_wday = 0; | ||
Time.tm_yday = 0; | ||
Time.tm_isdst = 0; // there is no DST in UTC | ||
|
||
sscanf(argv[1], "%d:%d:%d-%d:%d:%d", | ||
&Time.tm_year, &Time.tm_mon, | ||
&Time.tm_mday, &Time.tm_hour, | ||
&Time.tm_min, &Time.tm_sec); | ||
|
||
Time.tm_year -= 1900; | ||
Time.tm_mon -= 1; | ||
|
||
time_t thetime = util_timegm ( &Time ); | ||
|
||
if ( thetime != timegm ( &Time ) ) { | ||
g_printf ("%s - %lu - %lu\n", argv[1], thetime, timegm(&Time)); | ||
g_printf ("diff = %ld\n", (thetime - timegm(&Time))); | ||
return 1; | ||
} | ||
|
||
return 0; | ||
} |