diff options
Diffstat (limited to 'templates/man3/strtol.3.pot')
-rw-r--r-- | templates/man3/strtol.3.pot | 99 |
1 files changed, 34 insertions, 65 deletions
diff --git a/templates/man3/strtol.3.pot b/templates/man3/strtol.3.pot index 3db64003..01ad8469 100644 --- a/templates/man3/strtol.3.pot +++ b/templates/man3/strtol.3.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2024-03-01 17:09+0100\n" +"POT-Creation-Date: 2024-06-01 06:24+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -24,15 +24,15 @@ msgid "strtol" msgstr "" #. type: TH -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable opensuse-tumbleweed #, no-wrap -msgid "2023-12-19" +msgid "2024-05-02" msgstr "" #. type: TH -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable #, no-wrap -msgid "Linux man-pages 6.06" +msgid "Linux man-pages 6.8" msgstr "" #. type: SH @@ -148,7 +148,8 @@ msgid "" msgstr "" #. type: Plain text -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed msgid "" "If I<endptr> is not NULL, and the I<base> is supported, B<strtol>() stores " "the address of the first invalid character in I<*endptr>. If there were no " @@ -193,7 +194,8 @@ msgid "ERRORS" msgstr "" #. type: Plain text -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed msgid "This function does not modify I<errno> on success." msgstr "" @@ -358,7 +360,8 @@ msgid "NOTES" msgstr "" #. type: Plain text -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed msgid "" "Since B<strtol>() can legitimately return 0, B<LONG_MAX>, or B<LONG_MIN> " "(B<LLONG_MAX> or B<LLONG_MIN> for B<strtoll>()) on both success and " @@ -398,13 +401,15 @@ msgid "" msgstr "" #. type: SH -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed #, no-wrap msgid "CAVEATS" msgstr "" #. type: Plain text -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed msgid "" "If the I<base> needs to be tested, it should be tested in a call where the " "string is known to succeed. Otherwise, it's impossible to portably " @@ -412,7 +417,8 @@ msgid "" msgstr "" #. type: Plain text -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed #, no-wrap msgid "" "errno = 0;\n" @@ -469,7 +475,8 @@ msgid "Program source" msgstr "" #. type: Plain text -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed #, no-wrap msgid "" "#include E<lt>errno.hE<gt>\n" @@ -553,7 +560,7 @@ msgid "Linux man-pages 6.03" msgstr "" #. type: Plain text -#: debian-bookworm debian-unstable opensuse-leap-15-6 opensuse-tumbleweed +#: debian-bookworm opensuse-leap-15-6 msgid "" "If I<endptr> is not NULL, B<strtol>() stores the address of the first " "invalid character in I<*endptr>. If there were no digits at all, " @@ -573,7 +580,7 @@ msgid "B<strtoll>(): POSIX.1-2001, POSIX.1-2008, C99." msgstr "" #. type: Plain text -#: debian-bookworm debian-unstable opensuse-leap-15-6 opensuse-tumbleweed +#: debian-bookworm opensuse-leap-15-6 msgid "" "Since B<strtol>() can legitimately return 0, B<LONG_MAX>, or B<LONG_MIN> " "(B<LLONG_MAX> or B<LLONG_MIN> for B<strtoll>()) on both success and " @@ -685,65 +692,21 @@ msgid "" msgstr "" #. type: TH -#: debian-unstable opensuse-tumbleweed +#: fedora-40 fedora-rawhide mageia-cauldron #, no-wrap -msgid "2023-07-20" +msgid "2023-12-19" msgstr "" #. type: TH -#: debian-unstable opensuse-tumbleweed +#: fedora-40 mageia-cauldron #, no-wrap -msgid "Linux man-pages 6.05.01" +msgid "Linux man-pages 6.06" msgstr "" -#. type: Plain text -#: debian-unstable opensuse-tumbleweed +#. type: TH +#: fedora-rawhide #, no-wrap -msgid "" -"#include E<lt>errno.hE<gt>\n" -"#include E<lt>limits.hE<gt>\n" -"#include E<lt>stdio.hE<gt>\n" -"#include E<lt>stdlib.hE<gt>\n" -"\\&\n" -"int\n" -"main(int argc, char *argv[])\n" -"{\n" -" int base;\n" -" char *endptr, *str;\n" -" long val;\n" -"\\&\n" -" if (argc E<lt> 2) {\n" -" fprintf(stderr, \"Usage: %s str [base]\\en\", argv[0]);\n" -" exit(EXIT_FAILURE);\n" -" }\n" -"\\&\n" -" str = argv[1];\n" -" base = (argc E<gt> 2) ? atoi(argv[2]) : 0;\n" -"\\&\n" -" errno = 0; /* To distinguish success/failure after call */\n" -" val = strtol(str, &endptr, base);\n" -"\\&\n" -" /* Check for various possible errors. */\n" -"\\&\n" -" if (errno != 0) {\n" -" perror(\"strtol\");\n" -" exit(EXIT_FAILURE);\n" -" }\n" -"\\&\n" -" if (endptr == str) {\n" -" fprintf(stderr, \"No digits were found\\en\");\n" -" exit(EXIT_FAILURE);\n" -" }\n" -"\\&\n" -" /* If we got here, strtol() successfully parsed a number. */\n" -"\\&\n" -" printf(\"strtol() returned %ld\\en\", val);\n" -"\\&\n" -" if (*endptr != \\[aq]\\e0\\[aq]) /* Not necessarily an error... */\n" -" printf(\"Further characters after number: \\e\"%s\\e\"\\en\", endptr);\n" -"\\&\n" -" exit(EXIT_SUCCESS);\n" -"}\n" +msgid "Linux man-pages 6.7" msgstr "" #. type: TH @@ -757,3 +720,9 @@ msgstr "" #, no-wrap msgid "Linux man-pages 6.04" msgstr "" + +#. type: TH +#: opensuse-tumbleweed +#, no-wrap +msgid "Linux man-pages (unreleased)" +msgstr "" |