annotate src/strftime.c @ 51554:8cf86bc95fe5

(shell-command-separator-regexp): New variable. (shell-directory-tracker): Make regexp used for skipping to next command correspond to one used for command itself.
author Juanma Barranquero <lekktu@gmail.com>
date Thu, 12 Jun 2003 22:20:49 +0000
parents 4458f91cfb2b
children 73b3b97a1595
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
51234
4458f91cfb2b (my_strftime_localtime_r): Remove `defined but unused' warning.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 45846
diff changeset
1 /* Copyright (C) 1991,92,93,94,95,96,97,98,99,2000,2003
4458f91cfb2b (my_strftime_localtime_r): Remove `defined but unused' warning.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 45846
diff changeset
2 Free Software Foundation, Inc.
4458f91cfb2b (my_strftime_localtime_r): Remove `defined but unused' warning.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 45846
diff changeset
3
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
4 This file is part of the GNU Emacs.
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
5
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
6 The GNU C Library is free software; you can redistribute it and/or
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
7 modify it under the terms of the GNU Library General Public License as
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
8 published by the Free Software Foundation; either version 2 of the
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
9 License, or (at your option) any later version.
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
10
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
11 The GNU C Library is distributed in the hope that it will be useful,
19875
278944a16af3 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 18782
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
14 Library General Public License for more details.
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
15
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
16 You should have received a copy of the GNU Library General Public
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
19 Boston, MA 02111-1307, USA. */
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
20
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
21 #ifdef HAVE_CONFIG_H
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
22 # include <config.h>
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
23 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
24
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
25 #ifdef _LIBC
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
26 # define HAVE_LIMITS_H 1
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
27 # define HAVE_MBLEN 1
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
28 # define HAVE_MBRLEN 1
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
29 # define HAVE_STRUCT_ERA_ENTRY 1
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
30 # define HAVE_TM_GMTOFF 1
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
31 # define HAVE_TM_ZONE 1
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
32 # define HAVE_TZNAME 1
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
33 # define HAVE_TZSET 1
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
34 # define MULTIBYTE_IS_FORMAT_SAFE 1
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
35 # define STDC_HEADERS 1
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
36 # include "../locale/localeinfo.h"
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
37 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
38
20010
cb0800f5aa96 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 19875
diff changeset
39 #if defined emacs && !defined HAVE_BCOPY
cb0800f5aa96 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 19875
diff changeset
40 # define HAVE_MEMCPY 1
cb0800f5aa96 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 19875
diff changeset
41 #endif
cb0800f5aa96 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 19875
diff changeset
42
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
43 #include <ctype.h>
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
44 #include <sys/types.h> /* Some systems define `time_t' here. */
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
45
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
46 #ifdef TIME_WITH_SYS_TIME
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
47 # include <sys/time.h>
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
48 # include <time.h>
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
49 #else
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
50 # ifdef HAVE_SYS_TIME_H
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
51 # include <sys/time.h>
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
52 # else
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
53 # include <time.h>
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
54 # endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
55 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
56 #if HAVE_TZNAME
31100
92f108b8b281 [USE_CRT_DLL]: Remove unnecessary extern, which
Andrew Innes <andrewi@gnu.org>
parents: 28057
diff changeset
57 #ifndef USE_CRT_DLL
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
58 extern char *tzname[];
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
59 #endif
31100
92f108b8b281 [USE_CRT_DLL]: Remove unnecessary extern, which
Andrew Innes <andrewi@gnu.org>
parents: 28057
diff changeset
60 #endif
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
61
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
62 /* Do multibyte processing if multibytes are supported, unless
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
63 multibyte sequences are safe in formats. Multibyte sequences are
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
64 safe if they cannot contain byte sequences that look like format
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
65 conversion specifications. The GNU C Library uses UTF8 multibyte
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
66 encoding, which is safe for formats, but strftime.c can be used
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
67 with other C libraries that use unsafe encodings. */
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
68 #define DO_MULTIBYTE (HAVE_MBLEN && ! MULTIBYTE_IS_FORMAT_SAFE)
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
69
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
70 #if DO_MULTIBYTE
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
71 # if HAVE_MBRLEN
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
72 # include <wchar.h>
45846
a1fef23ccede [__hpux]: Include sys/_mbstate_t.h.
Eli Zaretskii <eliz@gnu.org>
parents: 43890
diff changeset
73 # if __hpux
a1fef23ccede [__hpux]: Include sys/_mbstate_t.h.
Eli Zaretskii <eliz@gnu.org>
parents: 43890
diff changeset
74 # include <sys/_mbstate_t.h>
a1fef23ccede [__hpux]: Include sys/_mbstate_t.h.
Eli Zaretskii <eliz@gnu.org>
parents: 43890
diff changeset
75 # endif
42384
e4835ecdffbc (mbsinit): Define as no-op if not available.
Richard M. Stallman <rms@gnu.org>
parents: 34302
diff changeset
76 # if !defined (mbsinit) && !defined (HAVE_MBSINIT)
e4835ecdffbc (mbsinit): Define as no-op if not available.
Richard M. Stallman <rms@gnu.org>
parents: 34302
diff changeset
77 # define mbsinit(ps) 1
e4835ecdffbc (mbsinit): Define as no-op if not available.
Richard M. Stallman <rms@gnu.org>
parents: 34302
diff changeset
78 # endif /* !defined (mbsinit) && !defined (HAVE_MBSINIT) */
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
79 # else
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
80 /* Simulate mbrlen with mblen as best we can. */
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
81 # define mbstate_t int
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
82 # define mbrlen(s, n, ps) mblen (s, n)
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
83 # define mbsinit(ps) (*(ps) == 0)
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
84 # endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
85 static const mbstate_t mbstate_zero;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
86 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
87
34302
1139c325f625 Change some #if foo to #ifdef foo.
Dave Love <fx@gnu.org>
parents: 32687
diff changeset
88 #ifdef HAVE_LIMITS_H
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
89 # include <limits.h>
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
90 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
91
34302
1139c325f625 Change some #if foo to #ifdef foo.
Dave Love <fx@gnu.org>
parents: 32687
diff changeset
92 #ifdef STDC_HEADERS
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
93 # include <stddef.h>
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
94 # include <stdlib.h>
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
95 #else
18781
70883b60c7a5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 18488
diff changeset
96 # ifndef HAVE_MEMCPY
70883b60c7a5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 18488
diff changeset
97 # define memcpy(d, s, n) bcopy ((s), (d), (n))
70883b60c7a5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 18488
diff changeset
98 # endif
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
99 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
100
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
101 #ifdef COMPILE_WIDE
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
102 # include <endian.h>
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
103 # define CHAR_T wchar_t
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
104 # define UCHAR_T unsigned int
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
105 # define L_(Str) L##Str
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
106 # define NLW(Sym) _NL_W##Sym
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
107
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
108 # define MEMCPY(d, s, n) __wmemcpy (d, s, n)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
109 # define STRLEN(s) __wcslen (s)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
110
20212
90f407354bdf automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20211
diff changeset
111 #else
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
112 # define CHAR_T char
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
113 # define UCHAR_T unsigned char
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
114 # define L_(Str) Str
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
115 # define NLW(Sym) Sym
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
116
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
117 # if !defined STDC_HEADERS && !defined HAVE_MEMCPY
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
118 # define MEMCPY(d, s, n) bcopy ((s), (d), (n))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
119 # else
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
120 # define MEMCPY(d, s, n) memcpy ((d), (s), (n))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
121 # endif
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
122 # define STRLEN(s) strlen (s)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
123
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
124 # ifdef _LIBC
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
125 # define MEMPCPY(d, s, n) __mempcpy (d, s, n)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
126 # else
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
127 # ifndef HAVE_MEMPCPY
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
128 # define MEMPCPY(d, s, n) ((void *) ((char *) memcpy (d, s, n) + (n)))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
129 # endif
20212
90f407354bdf automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20211
diff changeset
130 # endif
90f407354bdf automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20211
diff changeset
131 #endif
90f407354bdf automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20211
diff changeset
132
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
133 #ifndef __P
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
134 # if defined emacs && defined PROTOTYPES
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
135 # define __P(args) args
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
136 # elif defined __GNUC__ || (defined __STDC__ && __STDC__)
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
137 # define __P(args) args
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
138 # else
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
139 # define __P(args) ()
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
140 # endif /* GCC. */
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
141 #endif /* Not __P. */
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
142
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
143 #ifndef PTR
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
144 # ifdef __STDC__
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
145 # define PTR void *
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
146 # else
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
147 # define PTR char *
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
148 # endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
149 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
150
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
151 #ifndef CHAR_BIT
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
152 # define CHAR_BIT 8
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
153 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
154
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
155 #ifndef NULL
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
156 # define NULL 0
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
157 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
158
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
159 #define TYPE_SIGNED(t) ((t) -1 < 0)
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
160
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
161 /* Bound on length of the string representing an integer value of type t.
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
162 Subtract one for the sign bit if t is signed;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
163 302 / 1000 is log10 (2) rounded up;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
164 add one for integer division truncation;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
165 add one more for a minus sign if t is signed. */
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
166 #define INT_STRLEN_BOUND(t) \
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
167 ((sizeof (t) * CHAR_BIT - TYPE_SIGNED (t)) * 302 / 1000 + 1 + TYPE_SIGNED (t))
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
168
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
169 #define TM_YEAR_BASE 1900
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
170
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
171 #ifndef __isleap
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
172 /* Nonzero if YEAR is a leap year (every 4 years,
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
173 except every 100th isn't, and every 400th is). */
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
174 # define __isleap(year) \
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
175 ((year) % 4 == 0 && ((year) % 100 != 0 || (year) % 400 == 0))
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
176 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
177
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
178
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
179 #ifdef _LIBC
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
180 # define my_strftime_gmtime_r __gmtime_r
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
181 # define my_strftime_localtime_r __localtime_r
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
182 # define tzname __tzname
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
183 # define tzset __tzset
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
184 #else
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
185
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
186 /* If we're a strftime substitute in a GNU program, then prefer gmtime
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
187 to gmtime_r, since many gmtime_r implementations are buggy.
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
188 Similarly for localtime_r. */
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
189
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
190 # if ! HAVE_TM_GMTOFF
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
191 static struct tm *my_strftime_gmtime_r __P ((const time_t *, struct tm *));
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
192 static struct tm *
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
193 my_strftime_gmtime_r (t, tp)
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
194 const time_t *t;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
195 struct tm *tp;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
196 {
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
197 struct tm *l = gmtime (t);
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
198 if (! l)
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
199 return 0;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
200 *tp = *l;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
201 return tp;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
202 }
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
203
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
204 static struct tm *my_strftime_localtime_r __P ((const time_t *, struct tm *));
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
205 static struct tm *
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
206 my_strftime_localtime_r (t, tp)
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
207 const time_t *t;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
208 struct tm *tp;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
209 {
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
210 struct tm *l = localtime (t);
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
211 if (! l)
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
212 return 0;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
213 *tp = *l;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
214 return tp;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
215 }
51234
4458f91cfb2b (my_strftime_localtime_r): Remove `defined but unused' warning.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 45846
diff changeset
216 # endif /* ! HAVE_TM_GMTOFF */
4458f91cfb2b (my_strftime_localtime_r): Remove `defined but unused' warning.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 45846
diff changeset
217
20253
a7d1d668f57f automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20252
diff changeset
218 #endif /* ! defined _LIBC */
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
219
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
220
18781
70883b60c7a5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 18488
diff changeset
221 #if !defined memset && !defined HAVE_MEMSET && !defined _LIBC
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
222 /* Some systems lack the `memset' function and we don't want to
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
223 introduce additional dependencies. */
18487
47be751da08b automatically generated from GPLed version
Richard M. Stallman <rms@gnu.org>
parents: 17965
diff changeset
224 /* The SGI compiler reportedly barfs on the trailing null
47be751da08b automatically generated from GPLed version
Richard M. Stallman <rms@gnu.org>
parents: 17965
diff changeset
225 if we use a string constant as the initializer. 28 June 1997, rms. */
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
226 static const CHAR_T spaces[16] = /* " " */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
227 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
228 L_(' '),L_(' '),L_(' '),L_(' '),L_(' '),L_(' '),L_(' '),L_(' '),
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
229 L_(' '),L_(' '),L_(' '),L_(' '),L_(' '),L_(' '),L_(' '),L_(' ')
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
230 };
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
231 static const CHAR_T zeroes[16] = /* "0000000000000000" */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
232 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
233 L_('0'),L_('0'),L_('0'),L_('0'),L_('0'),L_('0'),L_('0'),L_('0'),
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
234 L_('0'),L_('0'),L_('0'),L_('0'),L_('0'),L_('0'),L_('0'),L_('0')
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
235 };
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
236
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
237 # define memset_space(P, Len) \
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
238 do { \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
239 int _len = (Len); \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
240 \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
241 do \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
242 { \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
243 int _this = _len > 16 ? 16 : _len; \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
244 (P) = MEMPCPY ((P), spaces, _this * sizeof (CHAR_T)); \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
245 _len -= _this; \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
246 } \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
247 while (_len > 0); \
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
248 } while (0)
17965
2ef01cc793bf automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 17502
diff changeset
249
2ef01cc793bf automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 17502
diff changeset
250 # define memset_zero(P, Len) \
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
251 do { \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
252 int _len = (Len); \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
253 \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
254 do \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
255 { \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
256 int _this = _len > 16 ? 16 : _len; \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
257 (P) = MEMPCPY ((P), zeroes, _this * sizeof (CHAR_T)); \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
258 _len -= _this; \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
259 } \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
260 while (_len > 0); \
17965
2ef01cc793bf automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 17502
diff changeset
261 } while (0)
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
262 #else
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
263 # ifdef COMPILE_WIDE
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
264 # define memset_space(P, Len) (wmemset ((P), L' ', (Len)), (P) += (Len))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
265 # define memset_zero(P, Len) (wmemset ((P), L'0', (Len)), (P) += (Len))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
266 # else
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
267 # define memset_space(P, Len) (memset ((P), ' ', (Len)), (P) += (Len))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
268 # define memset_zero(P, Len) (memset ((P), '0', (Len)), (P) += (Len))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
269 # endif
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
270 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
271
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
272 #define add(n, f) \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
273 do \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
274 { \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
275 int _n = (n); \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
276 int _delta = width - _n; \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
277 int _incr = _n + (_delta > 0 ? _delta : 0); \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
278 if (i + _incr >= maxsize) \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
279 return 0; \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
280 if (p) \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
281 { \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
282 if (_delta > 0) \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
283 { \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
284 if (pad == L_('0')) \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
285 memset_zero (p, _delta); \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
286 else \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
287 memset_space (p, _delta); \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
288 } \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
289 f; \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
290 p += _n; \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
291 } \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
292 i += _incr; \
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
293 } while (0)
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
294
18781
70883b60c7a5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 18488
diff changeset
295 #define cpy(n, s) \
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
296 add ((n), \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
297 if (to_lowcase) \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
298 memcpy_lowcase (p, (s), _n); \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
299 else if (to_uppcase) \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
300 memcpy_uppcase (p, (s), _n); \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
301 else \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
302 MEMCPY ((PTR) p, (PTR) (s), _n))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
303
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
304 #ifdef COMPILE_WIDE
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
305 # define widen(os, ws, l) \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
306 { \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
307 mbstate_t __st; \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
308 const char *__s = os; \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
309 memset (&__st, '\0', sizeof (__st)); \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
310 l = __mbsrtowcs (NULL, &__s, 0, &__st); \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
311 ws = alloca ((l + 1) * sizeof (wchar_t)); \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
312 (void) __mbsrtowcs (ws, &__s, l, &__st); \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
313 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
314 #endif
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
315
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
316
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
317 #ifdef COMPILE_WIDE
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
318 # define TOUPPER(Ch) towupper (Ch)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
319 # define TOLOWER(Ch) towlower (Ch)
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
320 #else
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
321 # ifdef _LIBC
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
322 # define TOUPPER(Ch) toupper (Ch)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
323 # define TOLOWER(Ch) tolower (Ch)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
324 # else
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
325 # define TOUPPER(Ch) (islower (Ch) ? toupper (Ch) : (Ch))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
326 # define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
327 # endif
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
328 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
329 /* We don't use `isdigit' here since the locale dependent
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
330 interpretation is not what we want here. We only need to accept
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
331 the arabic digits in the ASCII range. One day there is perhaps a
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
332 more reliable way to accept other sets of digits. */
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
333 #define ISDIGIT(Ch) ((unsigned int) (Ch) - L_('0') <= 9)
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
334
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
335 static CHAR_T *memcpy_lowcase __P ((CHAR_T *dest, const CHAR_T *src,
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
336 size_t len));
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
337
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
338 static CHAR_T *
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
339 memcpy_lowcase (dest, src, len)
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
340 CHAR_T *dest;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
341 const CHAR_T *src;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
342 size_t len;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
343 {
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
344 while (len-- > 0)
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
345 dest[len] = TOLOWER ((UCHAR_T) src[len]);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
346 return dest;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
347 }
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
348
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
349 static CHAR_T *memcpy_uppcase __P ((CHAR_T *dest, const CHAR_T *src,
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
350 size_t len));
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
351
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
352 static CHAR_T *
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
353 memcpy_uppcase (dest, src, len)
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
354 CHAR_T *dest;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
355 const CHAR_T *src;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
356 size_t len;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
357 {
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
358 while (len-- > 0)
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
359 dest[len] = TOUPPER ((UCHAR_T) src[len]);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
360 return dest;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
361 }
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
362
18781
70883b60c7a5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 18488
diff changeset
363
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
364 #if ! HAVE_TM_GMTOFF
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
365 /* Yield the difference between *A and *B,
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
366 measured in seconds, ignoring leap seconds. */
18781
70883b60c7a5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 18488
diff changeset
367 # define tm_diff ftime_tm_diff
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
368 static int tm_diff __P ((const struct tm *, const struct tm *));
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
369 static int
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
370 tm_diff (a, b)
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
371 const struct tm *a;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
372 const struct tm *b;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
373 {
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
374 /* Compute intervening leap days correctly even if year is negative.
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
375 Take care to avoid int overflow in leap day calculations,
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
376 but it's OK to assume that A and B are close to each other. */
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
377 int a4 = (a->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (a->tm_year & 3);
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
378 int b4 = (b->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (b->tm_year & 3);
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
379 int a100 = a4 / 25 - (a4 % 25 < 0);
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
380 int b100 = b4 / 25 - (b4 % 25 < 0);
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
381 int a400 = a100 >> 2;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
382 int b400 = b100 >> 2;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
383 int intervening_leap_days = (a4 - b4) - (a100 - b100) + (a400 - b400);
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
384 int years = a->tm_year - b->tm_year;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
385 int days = (365 * years + intervening_leap_days
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
386 + (a->tm_yday - b->tm_yday));
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
387 return (60 * (60 * (24 * days + (a->tm_hour - b->tm_hour))
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
388 + (a->tm_min - b->tm_min))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
389 + (a->tm_sec - b->tm_sec));
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
390 }
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
391 #endif /* ! HAVE_TM_GMTOFF */
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
392
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
393
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
394
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
395 /* The number of days from the first day of the first ISO week of this
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
396 year to the year day YDAY with week day WDAY. ISO weeks start on
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
397 Monday; the first ISO week has the year's first Thursday. YDAY may
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
398 be as small as YDAY_MINIMUM. */
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
399 #define ISO_WEEK_START_WDAY 1 /* Monday */
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
400 #define ISO_WEEK1_WDAY 4 /* Thursday */
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
401 #define YDAY_MINIMUM (-366)
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
402 static int iso_week_days __P ((int, int));
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
403 #ifdef __GNUC__
20010
cb0800f5aa96 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 19875
diff changeset
404 __inline__
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
405 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
406 static int
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
407 iso_week_days (yday, wday)
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
408 int yday;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
409 int wday;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
410 {
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
411 /* Add enough to the first operand of % to make it nonnegative. */
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
412 int big_enough_multiple_of_7 = (-YDAY_MINIMUM / 7 + 2) * 7;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
413 return (yday
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
414 - (yday - wday + ISO_WEEK1_WDAY + big_enough_multiple_of_7) % 7
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
415 + ISO_WEEK1_WDAY - ISO_WEEK_START_WDAY);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
416 }
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
417
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
418
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
419 #if !(defined _NL_CURRENT || HAVE_STRFTIME)
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
420 static CHAR_T const weekday_name[][10] =
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
421 {
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
422 L_("Sunday"), L_("Monday"), L_("Tuesday"), L_("Wednesday"),
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
423 L_("Thursday"), L_("Friday"), L_("Saturday")
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
424 };
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
425 static CHAR_T const month_name[][10] =
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
426 {
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
427 L_("January"), L_("February"), L_("March"), L_("April"), L_("May"),
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
428 L_("June"), L_("July"), L_("August"), L_("September"), L_("October"),
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
429 L_("November"), L_("December")
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
430 };
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
431 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
432
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
433
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
434 #ifdef emacs
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
435 # define my_strftime emacs_strftimeu
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
436 # define ut_argument , ut
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
437 # define ut_argument_spec int ut;
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
438 # define ut_argument_spec_iso , int ut
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
439 #else
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
440 # ifdef COMPILE_WIDE
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
441 # define my_strftime wcsftime
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
442 # else
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
443 # define my_strftime strftime
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
444 # endif
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
445 # define ut_argument
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
446 # define ut_argument_spec
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
447 # define ut_argument_spec_iso
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
448 /* We don't have this information in general. */
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
449 # define ut 0
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
450 #endif
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
451
32687
52117f9867f2 [!WINDOWSNT]: Don't apply Solaris 2.5 work-around on
Andrew Innes <andrewi@gnu.org>
parents: 32629
diff changeset
452 #if !defined _LIBC && !defined(WINDOWSNT) && HAVE_TZNAME && HAVE_TZSET
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
453 /* Solaris 2.5 tzset sometimes modifies the storage returned by localtime.
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
454 Work around this bug by copying *tp before it might be munged. */
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
455 size_t _strftime_copytm __P ((char *, size_t, const char *,
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
456 const struct tm * ut_argument_spec_iso));
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
457 size_t
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
458 my_strftime (s, maxsize, format, tp ut_argument)
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
459 CHAR_T *s;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
460 size_t maxsize;
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
461 const CHAR_T *format;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
462 const struct tm *tp;
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
463 ut_argument_spec
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
464 {
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
465 struct tm tmcopy;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
466 tmcopy = *tp;
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
467 return _strftime_copytm (s, maxsize, format, &tmcopy ut_argument);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
468 }
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
469 # undef my_strftime
32687
52117f9867f2 [!WINDOWSNT]: Don't apply Solaris 2.5 work-around on
Andrew Innes <andrewi@gnu.org>
parents: 32629
diff changeset
470 # define my_strftime _strftime_copytm
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
471 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
472
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
473
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
474 /* Write information from TP into S according to the format
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
475 string FORMAT, writing no more that MAXSIZE characters
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
476 (including the terminating '\0') and returning number of
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
477 characters written. If S is NULL, nothing will be written
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
478 anywhere, so to determine how many characters would be
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
479 written, use NULL for S and (size_t) UINT_MAX for MAXSIZE. */
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
480 size_t
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
481 my_strftime (s, maxsize, format, tp ut_argument)
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
482 CHAR_T *s;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
483 size_t maxsize;
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
484 const CHAR_T *format;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
485 const struct tm *tp;
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
486 ut_argument_spec
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
487 {
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
488 int hour12 = tp->tm_hour;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
489 #ifdef _NL_CURRENT
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
490 /* We cannot make the following values variables since we must delay
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
491 the evaluation of these values until really needed since some
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
492 expressions might not be valid in every situation. The `struct tm'
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
493 might be generated by a strptime() call that initialized
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
494 only a few elements. Dereference the pointers only if the format
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
495 requires this. Then it is ok to fail if the pointers are invalid. */
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
496 # define a_wkday \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
497 ((const CHAR_T *) _NL_CURRENT (LC_TIME, NLW(ABDAY_1) + tp->tm_wday))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
498 # define f_wkday \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
499 ((const CHAR_T *) _NL_CURRENT (LC_TIME, NLW(DAY_1) + tp->tm_wday))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
500 # define a_month \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
501 ((const CHAR_T *) _NL_CURRENT (LC_TIME, NLW(ABMON_1) + tp->tm_mon))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
502 # define f_month \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
503 ((const CHAR_T *) _NL_CURRENT (LC_TIME, NLW(MON_1) + tp->tm_mon))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
504 # define ampm \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
505 ((const CHAR_T *) _NL_CURRENT (LC_TIME, tp->tm_hour > 11 \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
506 ? NLW(PM_STR) : NLW(AM_STR)))
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
507
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
508 # define aw_len STRLEN (a_wkday)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
509 # define am_len STRLEN (a_month)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
510 # define ap_len STRLEN (ampm)
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
511 #else
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
512 # if !HAVE_STRFTIME
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
513 # define f_wkday (weekday_name[tp->tm_wday])
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
514 # define f_month (month_name[tp->tm_mon])
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
515 # define a_wkday f_wkday
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
516 # define a_month f_month
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
517 # define ampm (L_("AMPM") + 2 * (tp->tm_hour > 11))
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
518
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
519 size_t aw_len = 3;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
520 size_t am_len = 3;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
521 size_t ap_len = 2;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
522 # endif
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
523 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
524 const char *zone;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
525 size_t i = 0;
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
526 CHAR_T *p = s;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
527 const CHAR_T *f;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
528
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
529 zone = NULL;
18781
70883b60c7a5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 18488
diff changeset
530 #if HAVE_TM_ZONE
70883b60c7a5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 18488
diff changeset
531 /* The POSIX test suite assumes that setting
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
532 the environment variable TZ to a new value before calling strftime()
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
533 will influence the result (the %Z format) even if the information in
18781
70883b60c7a5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 18488
diff changeset
534 TP is computed with a totally different time zone.
70883b60c7a5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 18488
diff changeset
535 This is bogus: though POSIX allows bad behavior like this,
70883b60c7a5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 18488
diff changeset
536 POSIX does not require it. Do the right thing instead. */
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
537 zone = (const char *) tp->tm_zone;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
538 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
539 #if HAVE_TZNAME
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
540 if (ut)
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
541 {
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
542 if (! (zone && *zone))
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
543 zone = "UTC";
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
544 }
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
545 else
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
546 {
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
547 /* POSIX.1 8.1.1 requires that whenever strftime() is called, the
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
548 time zone names contained in the external variable `tzname' shall
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
549 be set as if the tzset() function had been called. */
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
550 # if HAVE_TZSET
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
551 tzset ();
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
552 # endif
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
553 }
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
554 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
555
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
556 if (hour12 > 12)
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
557 hour12 -= 12;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
558 else
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
559 if (hour12 == 0)
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
560 hour12 = 12;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
561
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
562 for (f = format; *f != '\0'; ++f)
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
563 {
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
564 int pad = 0; /* Padding for number ('-', '_', or 0). */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
565 int modifier; /* Field modifier ('E', 'O', or 0). */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
566 int digits; /* Max digits for numeric format. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
567 int number_value; /* Numeric value to be printed. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
568 int negative_number; /* 1 if the number is negative. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
569 const CHAR_T *subfmt;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
570 CHAR_T *bufp;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
571 CHAR_T buf[1 + (sizeof (int) < sizeof (time_t)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
572 ? INT_STRLEN_BOUND (time_t)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
573 : INT_STRLEN_BOUND (int))];
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
574 int width = -1;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
575 int to_lowcase = 0;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
576 int to_uppcase = 0;
18781
70883b60c7a5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents: 18488
diff changeset
577 int change_case = 0;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
578 int format_char;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
579
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
580 #if DO_MULTIBYTE && !defined COMPILE_WIDE
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
581 switch (*f)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
582 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
583 case L_('%'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
584 break;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
585
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
586 case L_('\b'): case L_('\t'): case L_('\n'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
587 case L_('\v'): case L_('\f'): case L_('\r'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
588 case L_(' '): case L_('!'): case L_('"'): case L_('#'): case L_('&'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
589 case L_('\''): case L_('('): case L_(')'): case L_('*'): case L_('+'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
590 case L_(','): case L_('-'): case L_('.'): case L_('/'): case L_('0'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
591 case L_('1'): case L_('2'): case L_('3'): case L_('4'): case L_('5'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
592 case L_('6'): case L_('7'): case L_('8'): case L_('9'): case L_(':'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
593 case L_(';'): case L_('<'): case L_('='): case L_('>'): case L_('?'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
594 case L_('A'): case L_('B'): case L_('C'): case L_('D'): case L_('E'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
595 case L_('F'): case L_('G'): case L_('H'): case L_('I'): case L_('J'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
596 case L_('K'): case L_('L'): case L_('M'): case L_('N'): case L_('O'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
597 case L_('P'): case L_('Q'): case L_('R'): case L_('S'): case L_('T'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
598 case L_('U'): case L_('V'): case L_('W'): case L_('X'): case L_('Y'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
599 case L_('Z'): case L_('['): case L_('\\'): case L_(']'): case L_('^'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
600 case L_('_'): case L_('a'): case L_('b'): case L_('c'): case L_('d'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
601 case L_('e'): case L_('f'): case L_('g'): case L_('h'): case L_('i'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
602 case L_('j'): case L_('k'): case L_('l'): case L_('m'): case L_('n'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
603 case L_('o'): case L_('p'): case L_('q'): case L_('r'): case L_('s'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
604 case L_('t'): case L_('u'): case L_('v'): case L_('w'): case L_('x'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
605 case L_('y'): case L_('z'): case L_('{'): case L_('|'): case L_('}'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
606 case L_('~'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
607 /* The C Standard requires these 97 characters (plus '%', `\a') to
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
608 be in the basic execution character set. None of these
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
609 characters can start a multibyte sequence, so they need
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
610 not be analyzed further. Some old compilers object to
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
611 `\a', so don't bother optimizing for it. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
612 add (1, *p = *f);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
613 continue;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
614
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
615 default:
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
616 /* Copy this multibyte sequence until we reach its end, find
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
617 an error, or come back to the initial shift state. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
618 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
619 mbstate_t mbstate = mbstate_zero;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
620 size_t len = 0;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
621
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
622 do
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
623 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
624 size_t bytes = mbrlen (f + len, (size_t) -1, &mbstate);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
625
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
626 if (bytes == 0)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
627 break;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
628
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
629 if (bytes == (size_t) -2)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
630 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
631 len += strlen (f + len);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
632 break;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
633 }
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
634
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
635 if (bytes == (size_t) -1)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
636 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
637 len++;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
638 break;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
639 }
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
640
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
641 len += bytes;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
642 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
643 while (! mbsinit (&mbstate));
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
644
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
645 cpy (len, f);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
646 f += len - 1;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
647 continue;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
648 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
649 }
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
650
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
651 #else /* ! DO_MULTIBYTE */
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
652
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
653 /* Either multibyte encodings are not supported, they are
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
654 safe for formats, so any non-'%' byte can be copied through,
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
655 or this is the wide character version. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
656 if (*f != L_('%'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
657 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
658 add (1, *p = *f);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
659 continue;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
660 }
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
661
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
662 #endif /* ! DO_MULTIBYTE */
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
663
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
664 /* Check for flags that can modify a format. */
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
665 while (1)
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
666 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
667 switch (*++f)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
668 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
669 /* This influences the number formats. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
670 case L_('_'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
671 case L_('-'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
672 case L_('0'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
673 pad = *f;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
674 continue;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
675
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
676 /* This changes textual output. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
677 case L_('^'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
678 to_uppcase = 1;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
679 continue;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
680 case L_('#'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
681 change_case = 1;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
682 continue;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
683
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
684 default:
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
685 break;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
686 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
687 break;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
688 }
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
689
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
690 /* As a GNU extension we allow to specify the field width. */
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
691 if (ISDIGIT (*f))
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
692 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
693 width = 0;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
694 do
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
695 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
696 width *= 10;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
697 width += *f - L_('0');
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
698 ++f;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
699 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
700 while (ISDIGIT (*f));
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
701 }
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
702
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
703 /* Check for modifiers. */
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
704 switch (*f)
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
705 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
706 case L_('E'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
707 case L_('O'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
708 modifier = *f++;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
709 break;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
710
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
711 default:
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
712 modifier = 0;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
713 break;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
714 }
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
715
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
716 /* Now do the specified format. */
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
717 format_char = *f;
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
718 switch (format_char)
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
719 {
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
720 #define DO_NUMBER(d, v) \
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
721 digits = width == -1 ? d : width; \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
722 number_value = v; goto do_number
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
723 #define DO_NUMBER_SPACEPAD(d, v) \
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
724 digits = width == -1 ? d : width; \
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
725 number_value = v; goto do_number_spacepad
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
726
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
727 case L_('%'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
728 if (modifier != 0)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
729 goto bad_format;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
730 add (1, *p = *f);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
731 break;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
732
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
733 case L_('a'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
734 if (modifier != 0)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
735 goto bad_format;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
736 if (change_case)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
737 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
738 to_uppcase = 1;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
739 to_lowcase = 0;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
740 }
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
741 #if defined _NL_CURRENT || !HAVE_STRFTIME
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
742 cpy (aw_len, a_wkday);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
743 break;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
744 #else
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
745 goto underlying_strftime;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
746 #endif
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
747
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
748 case 'A':
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
749 if (modifier != 0)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
750 goto bad_format;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
751 if (change_case)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
752 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
753 to_uppcase = 1;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
754 to_lowcase = 0;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
755 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
756 #if defined _NL_CURRENT || !HAVE_STRFTIME
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
757 cpy (STRLEN (f_wkday), f_wkday);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
758 break;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
759 #else
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
760 goto underlying_strftime;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
761 #endif
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
762
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
763 case L_('b'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
764 case L_('h'): /* POSIX.2 extension. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
765 if (change_case)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
766 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
767 to_uppcase = 1;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
768 to_lowcase = 0;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
769 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
770 if (modifier != 0)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
771 goto bad_format;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
772 #if defined _NL_CURRENT || !HAVE_STRFTIME
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
773 cpy (am_len, a_month);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
774 break;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
775 #else
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
776 goto underlying_strftime;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
777 #endif
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
778
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
779 case L_('B'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
780 if (modifier != 0)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
781 goto bad_format;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
782 if (change_case)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
783 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
784 to_uppcase = 1;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
785 to_lowcase = 0;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
786 }
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
787 #if defined _NL_CURRENT || !HAVE_STRFTIME
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
788 cpy (STRLEN (f_month), f_month);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
789 break;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
790 #else
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
791 goto underlying_strftime;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
792 #endif
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
793
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
794 case L_('c'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
795 if (modifier == L_('O'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
796 goto bad_format;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
797 #ifdef _NL_CURRENT
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
798 if (! (modifier == 'E'
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
799 && (*(subfmt = (CHAR_T *) _NL_CURRENT (LC_TIME,
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
800 NLW(ERA_D_T_FMT)))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
801 != '\0')))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
802 subfmt = (CHAR_T *) _NL_CURRENT (LC_TIME, NLW(D_T_FMT));
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
803 #else
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
804 # if HAVE_STRFTIME
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
805 goto underlying_strftime;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
806 # else
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
807 subfmt = L_("%a %b %e %H:%M:%S %Y");
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
808 # endif
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
809 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
810
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
811 subformat:
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
812 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
813 CHAR_T *old_start = p;
32687
52117f9867f2 [!WINDOWSNT]: Don't apply Solaris 2.5 work-around on
Andrew Innes <andrewi@gnu.org>
parents: 32629
diff changeset
814 size_t len = my_strftime (NULL, (size_t) -1, subfmt, tp, 0);
52117f9867f2 [!WINDOWSNT]: Don't apply Solaris 2.5 work-around on
Andrew Innes <andrewi@gnu.org>
parents: 32629
diff changeset
815 add (len, my_strftime (p, maxsize - i, subfmt, tp, 0));
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
816
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
817 if (to_uppcase)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
818 while (old_start < p)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
819 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
820 *old_start = TOUPPER ((UCHAR_T) *old_start);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
821 ++old_start;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
822 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
823 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
824 break;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
825
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
826 #if HAVE_STRFTIME && ! (defined _NL_CURRENT && HAVE_STRUCT_ERA_ENTRY)
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
827 underlying_strftime:
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
828 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
829 /* The relevant information is available only via the
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
830 underlying strftime implementation, so use that. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
831 char ufmt[4];
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
832 char *u = ufmt;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
833 char ubuf[1024]; /* enough for any single format in practice */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
834 size_t len;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
835 /* Make sure we're calling the actual underlying strftime.
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
836 In some cases, config.h contains something like
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
837 "#define strftime rpl_strftime". */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
838 # ifdef strftime
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
839 # undef strftime
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
840 size_t strftime ();
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
841 # endif
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
842
43890
38d2cf408e27 (my_strftime) [STRFTIME_NO_POSIX2]: Handle %h, %EX
Jason Rumney <jasonr@gnu.org>
parents: 42384
diff changeset
843 #ifdef STRFTIME_NO_POSIX2
38d2cf408e27 (my_strftime) [STRFTIME_NO_POSIX2]: Handle %h, %EX
Jason Rumney <jasonr@gnu.org>
parents: 42384
diff changeset
844 /* Some system libraries do not support the POSIX.2 extensions.
38d2cf408e27 (my_strftime) [STRFTIME_NO_POSIX2]: Handle %h, %EX
Jason Rumney <jasonr@gnu.org>
parents: 42384
diff changeset
845 In those cases, convert %h to %b, and strip modifiers. */
38d2cf408e27 (my_strftime) [STRFTIME_NO_POSIX2]: Handle %h, %EX
Jason Rumney <jasonr@gnu.org>
parents: 42384
diff changeset
846 modifier = 0;
38d2cf408e27 (my_strftime) [STRFTIME_NO_POSIX2]: Handle %h, %EX
Jason Rumney <jasonr@gnu.org>
parents: 42384
diff changeset
847 if (format_char == 'h')
38d2cf408e27 (my_strftime) [STRFTIME_NO_POSIX2]: Handle %h, %EX
Jason Rumney <jasonr@gnu.org>
parents: 42384
diff changeset
848 format_char = 'b';
38d2cf408e27 (my_strftime) [STRFTIME_NO_POSIX2]: Handle %h, %EX
Jason Rumney <jasonr@gnu.org>
parents: 42384
diff changeset
849 #endif
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
850 *u++ = '%';
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
851 if (modifier != 0)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
852 *u++ = modifier;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
853 *u++ = format_char;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
854 *u = '\0';
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
855 len = strftime (ubuf, sizeof ubuf, ufmt, tp);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
856 if (len == 0 && ubuf[0] != '\0')
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
857 return 0;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
858 cpy (len, ubuf);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
859 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
860 break;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
861 #endif
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
862
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
863 case L_('C'): /* POSIX.2 extension. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
864 if (modifier == L_('O'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
865 goto bad_format;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
866 if (modifier == L_('E'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
867 {
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
868 #if HAVE_STRUCT_ERA_ENTRY
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
869 struct era_entry *era = _nl_get_era_entry (tp);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
870 if (era)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
871 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
872 # ifdef COMPILE_WIDE
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
873 size_t len = __wcslen (era->era_wname);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
874 cpy (len, era->era_wname);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
875 # else
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
876 size_t len = strlen (era->era_name);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
877 cpy (len, era->era_name);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
878 # endif
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
879 break;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
880 }
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
881 #else
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
882 # if HAVE_STRFTIME
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
883 goto underlying_strftime;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
884 # endif
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
885 #endif
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
886 }
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
887
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
888 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
889 int year = tp->tm_year + TM_YEAR_BASE;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
890 DO_NUMBER (1, year / 100 - (year % 100 < 0));
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
891 }
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
892
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
893 case L_('x'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
894 if (modifier == L_('O'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
895 goto bad_format;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
896 #ifdef _NL_CURRENT
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
897 if (! (modifier == L_('E')
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
898 && (*(subfmt = (CHAR_T *)_NL_CURRENT (LC_TIME,
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
899 NLW(ERA_D_FMT)))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
900 != L_('\0'))))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
901 subfmt = (CHAR_T *) _NL_CURRENT (LC_TIME, NLW(D_FMT));
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
902 goto subformat;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
903 #else
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
904 # if HAVE_STRFTIME
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
905 goto underlying_strftime;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
906 # else
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
907 /* Fall through. */
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
908 # endif
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
909 #endif
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
910 case L_('D'): /* POSIX.2 extension. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
911 if (modifier != 0)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
912 goto bad_format;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
913 subfmt = L_("%m/%d/%y");
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
914 goto subformat;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
915
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
916 case L_('d'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
917 if (modifier == L_('E'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
918 goto bad_format;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
919
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
920 DO_NUMBER (2, tp->tm_mday);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
921
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
922 case L_('e'): /* POSIX.2 extension. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
923 if (modifier == L_('E'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
924 goto bad_format;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
925
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
926 DO_NUMBER_SPACEPAD (2, tp->tm_mday);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
927
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
928 /* All numeric formats set DIGITS and NUMBER_VALUE and then
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
929 jump to one of these two labels. */
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
930
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
931 do_number_spacepad:
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
932 /* Force `_' flag unless overwritten by `0' flag. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
933 if (pad != L_('0'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
934 pad = L_('_');
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
935
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
936 do_number:
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
937 /* Format the number according to the MODIFIER flag. */
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
938
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
939 if (modifier == L_('O') && 0 <= number_value)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
940 {
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
941 #ifdef _NL_CURRENT
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
942 /* Get the locale specific alternate representation of
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
943 the number NUMBER_VALUE. If none exist NULL is returned. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
944 # ifdef COMPILE_WIDE
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
945 const wchar_t *cp = _nl_get_walt_digit (number_value);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
946 # else
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
947 const char *cp = _nl_get_alt_digit (number_value);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
948 # endif
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
949
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
950 if (cp != NULL)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
951 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
952 size_t digitlen = STRLEN (cp);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
953 if (digitlen != 0)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
954 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
955 cpy (digitlen, cp);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
956 break;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
957 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
958 }
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
959 #else
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
960 # if HAVE_STRFTIME
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
961 goto underlying_strftime;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
962 # endif
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
963 #endif
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
964 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
965 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
966 unsigned int u = number_value;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
967
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
968 bufp = buf + sizeof (buf) / sizeof (buf[0]);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
969 negative_number = number_value < 0;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
970
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
971 if (negative_number)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
972 u = -u;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
973
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
974 do
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
975 *--bufp = u % 10 + L_('0');
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
976 while ((u /= 10) != 0);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
977 }
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
978
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
979 do_number_sign_and_padding:
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
980 if (negative_number)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
981 *--bufp = L_('-');
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
982
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
983 if (pad != L_('-'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
984 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
985 int padding = digits - (buf + (sizeof (buf) / sizeof (buf[0]))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
986 - bufp);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
987
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
988 if (pad == L_('_'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
989 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
990 while (0 < padding--)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
991 *--bufp = L_(' ');
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
992 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
993 else
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
994 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
995 bufp += negative_number;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
996 while (0 < padding--)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
997 *--bufp = L_('0');
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
998 if (negative_number)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
999 *--bufp = L_('-');
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1000 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1001 }
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1002
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1003 cpy (buf + sizeof (buf) / sizeof (buf[0]) - bufp, bufp);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1004 break;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1005
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1006 case L_('F'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1007 if (modifier != 0)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1008 goto bad_format;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1009 subfmt = L_("%Y-%m-%d");
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1010 goto subformat;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1011
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1012 case L_('H'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1013 if (modifier == L_('E'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1014 goto bad_format;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1015
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1016 DO_NUMBER (2, tp->tm_hour);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1017
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1018 case L_('I'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1019 if (modifier == L_('E'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1020 goto bad_format;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1021
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1022 DO_NUMBER (2, hour12);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1023
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1024 case L_('k'): /* GNU extension. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1025 if (modifier == L_('E'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1026 goto bad_format;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1027
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1028 DO_NUMBER_SPACEPAD (2, tp->tm_hour);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1029
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1030 case L_('l'): /* GNU extension. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1031 if (modifier == L_('E'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1032 goto bad_format;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1033
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1034 DO_NUMBER_SPACEPAD (2, hour12);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1035
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1036 case L_('j'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1037 if (modifier == L_('E'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1038 goto bad_format;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1039
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1040 DO_NUMBER (3, 1 + tp->tm_yday);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1041
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1042 case L_('M'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1043 if (modifier == L_('E'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1044 goto bad_format;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1045
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1046 DO_NUMBER (2, tp->tm_min);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1047
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1048 case L_('m'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1049 if (modifier == L_('E'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1050 goto bad_format;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1051
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1052 DO_NUMBER (2, tp->tm_mon + 1);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1053
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1054 case L_('n'): /* POSIX.2 extension. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1055 add (1, *p = L_('\n'));
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1056 break;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1057
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1058 case L_('P'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1059 to_lowcase = 1;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
1060 #if !defined _NL_CURRENT && HAVE_STRFTIME
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1061 format_char = L_('p');
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
1062 #endif
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1063 /* FALLTHROUGH */
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1064
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1065 case L_('p'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1066 if (change_case)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1067 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1068 to_uppcase = 0;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1069 to_lowcase = 1;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1070 }
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
1071 #if defined _NL_CURRENT || !HAVE_STRFTIME
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1072 cpy (ap_len, ampm);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1073 break;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
1074 #else
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1075 goto underlying_strftime;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
1076 #endif
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1077
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1078 case L_('R'): /* GNU extension. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1079 subfmt = L_("%H:%M");
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1080 goto subformat;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1081
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1082 case L_('r'): /* POSIX.2 extension. */
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1083 #ifdef _NL_CURRENT
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1084 if (*(subfmt = (CHAR_T *) _NL_CURRENT (LC_TIME,
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1085 NLW(T_FMT_AMPM))) == L_('\0'))
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1086 #endif
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1087 subfmt = L_("%I:%M:%S %p");
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1088 goto subformat;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1089
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1090 case L_('S'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1091 if (modifier == L_('E'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1092 goto bad_format;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1093
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1094 DO_NUMBER (2, tp->tm_sec);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1095
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1096 case L_('s'): /* GNU extension. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1097 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1098 struct tm ltm;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1099 time_t t;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1100
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1101 ltm = *tp;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1102 t = mktime (&ltm);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1103
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1104 /* Generate string value for T using time_t arithmetic;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1105 this works even if sizeof (long) < sizeof (time_t). */
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1106
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1107 bufp = buf + sizeof (buf) / sizeof (buf[0]);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1108 negative_number = t < 0;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1109
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1110 do
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1111 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1112 int d = t % 10;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1113 t /= 10;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1114
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1115 if (negative_number)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1116 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1117 d = -d;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1118
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1119 /* Adjust if division truncates to minus infinity. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1120 if (0 < -1 % 10 && d < 0)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1121 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1122 t++;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1123 d += 10;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1124 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1125 }
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1126
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1127 *--bufp = d + L_('0');
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1128 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1129 while (t != 0);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1130
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1131 digits = 1;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1132 goto do_number_sign_and_padding;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1133 }
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1134
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1135 case L_('X'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1136 if (modifier == L_('O'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1137 goto bad_format;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1138 #ifdef _NL_CURRENT
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1139 if (! (modifier == L_('E')
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1140 && (*(subfmt = (CHAR_T *) _NL_CURRENT (LC_TIME,
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1141 NLW(ERA_T_FMT)))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1142 != L_('\0'))))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1143 subfmt = (CHAR_T *) _NL_CURRENT (LC_TIME, NLW(T_FMT));
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1144 goto subformat;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
1145 #else
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
1146 # if HAVE_STRFTIME
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1147 goto underlying_strftime;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
1148 # else
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1149 /* Fall through. */
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
1150 # endif
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1151 #endif
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1152 case L_('T'): /* POSIX.2 extension. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1153 subfmt = L_("%H:%M:%S");
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1154 goto subformat;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1155
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1156 case L_('t'): /* POSIX.2 extension. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1157 add (1, *p = L_('\t'));
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1158 break;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1159
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1160 case L_('u'): /* POSIX.2 extension. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1161 DO_NUMBER (1, (tp->tm_wday - 1 + 7) % 7 + 1);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1162
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1163 case L_('U'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1164 if (modifier == L_('E'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1165 goto bad_format;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1166
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1167 DO_NUMBER (2, (tp->tm_yday - tp->tm_wday + 7) / 7);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1168
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1169 case L_('V'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1170 case L_('g'): /* GNU extension. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1171 case L_('G'): /* GNU extension. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1172 if (modifier == L_('E'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1173 goto bad_format;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1174 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1175 int year = tp->tm_year + TM_YEAR_BASE;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1176 int days = iso_week_days (tp->tm_yday, tp->tm_wday);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1177
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1178 if (days < 0)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1179 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1180 /* This ISO week belongs to the previous year. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1181 year--;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1182 days = iso_week_days (tp->tm_yday + (365 + __isleap (year)),
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1183 tp->tm_wday);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1184 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1185 else
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1186 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1187 int d = iso_week_days (tp->tm_yday - (365 + __isleap (year)),
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1188 tp->tm_wday);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1189 if (0 <= d)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1190 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1191 /* This ISO week belongs to the next year. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1192 year++;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1193 days = d;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1194 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1195 }
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1196
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1197 switch (*f)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1198 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1199 case L_('g'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1200 DO_NUMBER (2, (year % 100 + 100) % 100);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1201
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1202 case L_('G'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1203 DO_NUMBER (1, year);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1204
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1205 default:
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1206 DO_NUMBER (2, days / 7 + 1);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1207 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1208 }
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1209
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1210 case L_('W'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1211 if (modifier == L_('E'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1212 goto bad_format;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1213
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1214 DO_NUMBER (2, (tp->tm_yday - (tp->tm_wday - 1 + 7) % 7 + 7) / 7);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1215
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1216 case L_('w'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1217 if (modifier == L_('E'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1218 goto bad_format;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1219
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1220 DO_NUMBER (1, tp->tm_wday);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1221
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1222 case L_('Y'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1223 if (modifier == 'E')
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1224 {
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
1225 #if HAVE_STRUCT_ERA_ENTRY
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1226 struct era_entry *era = _nl_get_era_entry (tp);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1227 if (era)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1228 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1229 # ifdef COMPILE_WIDE
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1230 subfmt = era->era_wformat;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1231 # else
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1232 subfmt = era->era_format;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1233 # endif
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1234 goto subformat;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1235 }
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
1236 #else
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
1237 # if HAVE_STRFTIME
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1238 goto underlying_strftime;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
1239 # endif
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
1240 #endif
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1241 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1242 if (modifier == L_('O'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1243 goto bad_format;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1244 else
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1245 DO_NUMBER (1, tp->tm_year + TM_YEAR_BASE);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1246
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1247 case L_('y'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1248 if (modifier == L_('E'))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1249 {
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
1250 #if HAVE_STRUCT_ERA_ENTRY
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1251 struct era_entry *era = _nl_get_era_entry (tp);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1252 if (era)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1253 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1254 int delta = tp->tm_year - era->start_date[0];
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1255 DO_NUMBER (1, (era->offset
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1256 + delta * era->absolute_direction));
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1257 }
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
1258 #else
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
1259 # if HAVE_STRFTIME
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1260 goto underlying_strftime;
20211
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
1261 # endif
f722b33c682d automatically generated from GPLed version
Ulrich Drepper <drepper@redhat.com>
parents: 20010
diff changeset
1262 #endif
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1263 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1264 DO_NUMBER (2, (tp->tm_year % 100 + 100) % 100);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1265
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1266 case L_('Z'):
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1267 if (change_case)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1268 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1269 to_uppcase = 0;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1270 to_lowcase = 1;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1271 }
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
1272
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
1273 #if HAVE_TZNAME
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1274 /* The tzset() call might have changed the value. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1275 if (!(zone && *zone) && tp->tm_isdst >= 0)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1276 zone = tzname[tp->tm_isdst];
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
1277 #endif
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1278 if (! zone)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1279 zone = ""; /* POSIX.2 requires the empty string here. */
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
1280
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1281 #ifdef COMPILE_WIDE
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1282 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1283 /* The zone string is always given in multibyte form. We have
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1284 to transform it first. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1285 wchar_t *wczone;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1286 size_t len;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1287 widen (zone, wczone, len);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1288 cpy (len, wczone);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1289 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1290 #else
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1291 cpy (strlen (zone), zone);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1292 #endif
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1293 break;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1294
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1295 case L_('z'): /* GNU extension. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1296 if (tp->tm_isdst < 0)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1297 break;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1298
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1299 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1300 int diff;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1301 #if HAVE_TM_GMTOFF
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1302 diff = tp->tm_gmtoff;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1303 #else
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1304 if (ut)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1305 diff = 0;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1306 else
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1307 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1308 struct tm gtm;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1309 struct tm ltm;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1310 time_t lt;
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1311
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1312 ltm = *tp;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1313 lt = mktime (&ltm);
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1314
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1315 if (lt == (time_t) -1)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1316 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1317 /* mktime returns -1 for errors, but -1 is also a
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1318 valid time_t value. Check whether an error really
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1319 occurred. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1320 struct tm tm;
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
1321
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1322 if (! my_strftime_localtime_r (&lt, &tm)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1323 || ((ltm.tm_sec ^ tm.tm_sec)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1324 | (ltm.tm_min ^ tm.tm_min)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1325 | (ltm.tm_hour ^ tm.tm_hour)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1326 | (ltm.tm_mday ^ tm.tm_mday)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1327 | (ltm.tm_mon ^ tm.tm_mon)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1328 | (ltm.tm_year ^ tm.tm_year)))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1329 break;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1330 }
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
1331
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1332 if (! my_strftime_gmtime_r (&lt, &gtm))
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1333 break;
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
1334
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1335 diff = tm_diff (&ltm, &gtm);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1336 }
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1337 #endif
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1338
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1339 if (diff < 0)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1340 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1341 add (1, *p = L_('-'));
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1342 diff = -diff;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1343 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1344 else
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1345 add (1, *p = L_('+'));
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1346
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1347 diff /= 60;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1348 DO_NUMBER (4, (diff / 60) * 100 + diff % 60);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1349 }
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1350
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1351 case L_('\0'): /* GNU extension: % at end of format. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1352 --f;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1353 /* Fall through. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1354 default:
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1355 /* Unknown format; output the format, including the '%',
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1356 since this is most likely the right thing to do if a
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1357 multibyte string has been misparsed. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1358 bad_format:
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1359 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1360 int flen;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1361 for (flen = 1; f[1 - flen] != L_('%'); flen++)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1362 continue;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1363 cpy (flen, &f[1 - flen]);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1364 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1365 break;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1366 }
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1367 }
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1368
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 23323
diff changeset
1369 if (p && maxsize != 0)
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1370 *p = L_('\0');
17502
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1371 return i;
8f3dcea869f5 automatically generated from GPLed version
Paul Eggert <eggert@twinsun.com>
parents:
diff changeset
1372 }
32629
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1373
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1374
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1375 #ifdef emacs
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1376 /* For Emacs we have a separate interface which corresponds to the normal
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1377 strftime function and does not have the extra information whether the
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1378 TP arguments comes from a `gmtime' call or not. */
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1379 size_t
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1380 emacs_strftime (s, maxsize, format, tp)
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1381 char *s;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1382 size_t maxsize;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1383 const char *format;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1384 const struct tm *tp;
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1385 {
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1386 return my_strftime (s, maxsize, format, tp, 0);
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1387 }
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1388 #endif
2683108cd13f Sync with glibc, file version 1.78.
Gerd Moellmann <gerd@gnu.org>
parents: 31100
diff changeset
1389