Update contrib.
1 /* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.*/
2 #undef G_DISABLE_ASSERT
5 #ifdef GLIB_COMPILATION
6 #undef GLIB_COMPILATION
16 void g_date_debug_print(GDate* d)
18 if (!d) g_print("NULL!\n");
20 g_print("julian: %u (%s) DMY: %u %u %u (%s)\n",
22 d->julian ? "valid" : "invalid",
26 d->dmy ? "valid" : "invalid");
31 /* These only work in the POSIX locale, maybe C too -
32 * type POSIX into the program to check them
34 char* posix_tests [] = {
47 int main(int argc, char** argv)
54 loc = setlocale(LC_ALL,"");
56 g_print("\nLocale set to %s\n", loc);
58 g_print("\nLocale unchanged\n");
62 while (fgets(input, 10, stdin))
66 g_print("Enter a date to parse and press enter, or type `POSIX':\n");
70 if (strcmp(input,"POSIX\n") == 0)
72 char** s = posix_tests;
74 g_date_set_parse(d, *s);
76 g_print("POSIXy parse test `%s' ...", *s);
80 g_print(" failed.\n");
86 g_date_strftime(buf,100," parsed `%x' (%B %d %Y)\n",
96 g_date_set_parse(d, input);
100 g_print("Parse failed.\n");
106 g_date_strftime(buf,100,"Parsed: `%x' (%B %d %Y)\n",