diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-05-30 23:45:27 -0400 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-05-30 23:45:27 -0400 |
commit | 22ea6af9c93cbbfce581a00c7a41b0c92fd8507d (patch) | |
tree | 5646692c3310e7ea76073abb53e8d4b7a1b97875 /helpers/timeformat.c | |
parent | 0b876113d778d77543fd8bafef4e37fc2af72bc8 (diff) | |
parent | 501c2e5e720e3dbcb2e830c28037dd8b8d46bfcf (diff) | |
download | egawk-22ea6af9c93cbbfce581a00c7a41b0c92fd8507d.tar.gz egawk-22ea6af9c93cbbfce581a00c7a41b0c92fd8507d.tar.bz2 egawk-22ea6af9c93cbbfce581a00c7a41b0c92fd8507d.zip |
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'helpers/timeformat.c')
-rw-r--r-- | helpers/timeformat.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/helpers/timeformat.c b/helpers/timeformat.c new file mode 100644 index 00000000..c3d1b933 --- /dev/null +++ b/helpers/timeformat.c @@ -0,0 +1,13 @@ +#include <stdio.h> +#include <locale.h> +#include <langinfo.h> + +int main(int argc, char **argv) +{ + setlocale(LC_ALL, ""); + printf("D_T_FMT: %s\n", nl_langinfo(D_T_FMT)); +#ifdef _DATE_FMT + printf("_DATE_FMT: %s\n", nl_langinfo(_DATE_FMT)); +#endif /* _DATE_FMT */ + return 0; +} |