diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-06-08 09:51:47 -0400 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-06-08 09:51:47 -0400 |
commit | a6568baf060045cadad1f05af5cfe43e31626b31 (patch) | |
tree | 4471355f7fc25c1549a915a03ab8b14fbeb8783d /helpers | |
parent | c70ee2ae9fc9fa99c0b3b1af20a7dd0203aaa0d1 (diff) | |
parent | 72882c6a1e76730e6e706941a1a3a855ea023b69 (diff) | |
download | egawk-a6568baf060045cadad1f05af5cfe43e31626b31.tar.gz egawk-a6568baf060045cadad1f05af5cfe43e31626b31.tar.bz2 egawk-a6568baf060045cadad1f05af5cfe43e31626b31.zip |
Merge branch 'master' into feature/cmake
Diffstat (limited to 'helpers')
-rw-r--r-- | helpers/ChangeLog | 4 | ||||
-rw-r--r-- | helpers/mb_cur_max.c | 10 | ||||
-rw-r--r-- | helpers/timeformat.c | 13 |
3 files changed, 27 insertions, 0 deletions
diff --git a/helpers/ChangeLog b/helpers/ChangeLog index 357bb09c..fb0cc109 100644 --- a/helpers/ChangeLog +++ b/helpers/ChangeLog @@ -1,3 +1,7 @@ +2015-05-27 Arnold D. Robbins <arnold@skeeve.com> + + * mb_cur_max.c, timeformat.c: New files. + 2015-05-19 Arnold D. Robbins <arnold@skeeve.com> * 4.1.3: Release tar ball made. diff --git a/helpers/mb_cur_max.c b/helpers/mb_cur_max.c new file mode 100644 index 00000000..c36d7ef7 --- /dev/null +++ b/helpers/mb_cur_max.c @@ -0,0 +1,10 @@ +#include <stdio.h> +#include <locale.h> +#include <stdlib.h> + +int main() +{ + setlocale(LC_ALL, ""); + printf("MB_CUR_MAX = %lu\n", MB_CUR_MAX); + return 0; +} 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; +} |