Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Musl
提交
87be54a1
T
Third Party Musl
项目概览
OpenHarmony
/
Third Party Musl
大约 1 年 前同步成功
通知
37
Star
125
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Musl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
87be54a1
编写于
7月 24, 2013
作者:
R
Rich Felker
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
rework langinfo code for ABI compat and for use by time code
上级
ad4a5367
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
17 addition
and
17 deletion
+17
-17
src/locale/langinfo.c
src/locale/langinfo.c
+8
-2
src/locale/nl_langinfo_l.c
src/locale/nl_langinfo_l.c
+0
-7
src/time/__asctime.c
src/time/__asctime.c
+5
-4
src/time/strftime.c
src/time/strftime.c
+4
-4
未找到文件。
src/locale/langinfo.c
浏览文件 @
87be54a1
...
@@ -25,7 +25,7 @@ static const char c_time[] =
...
@@ -25,7 +25,7 @@ static const char c_time[] =
static
const
char
c_messages
[]
=
"^[yY]
\0
"
"^[nN]"
;
static
const
char
c_messages
[]
=
"^[yY]
\0
"
"^[nN]"
;
static
const
char
c_numeric
[]
=
".
\0
"
""
;
static
const
char
c_numeric
[]
=
".
\0
"
""
;
char
*
__
langinfo
(
nl_item
item
)
char
*
__
nl_langinfo_l
(
nl_item
item
,
locale_t
loc
)
{
{
int
cat
=
item
>>
16
;
int
cat
=
item
>>
16
;
int
idx
=
item
&
65535
;
int
idx
=
item
&
65535
;
...
@@ -58,4 +58,10 @@ char *__langinfo(nl_item item)
...
@@ -58,4 +58,10 @@ char *__langinfo(nl_item item)
return
(
char
*
)
str
;
return
(
char
*
)
str
;
}
}
weak_alias
(
__langinfo
,
nl_langinfo
);
char
*
__nl_langinfo
(
nl_item
item
)
{
return
__nl_langinfo_l
(
item
,
LC_GLOBAL_LOCALE
);
}
weak_alias
(
__nl_langinfo
,
nl_langinfo
);
weak_alias
(
__nl_langinfo_l
,
nl_langinfo_l
);
src/locale/nl_langinfo_l.c
已删除
100644 → 0
浏览文件 @
ad4a5367
#include <locale.h>
#include <langinfo.h>
char
*
nl_langinfo_l
(
nl_item
item
,
locale_t
l
)
{
return
nl_langinfo
(
item
);
}
src/time/__asctime.c
浏览文件 @
87be54a1
...
@@ -3,14 +3,15 @@
...
@@ -3,14 +3,15 @@
#include <langinfo.h>
#include <langinfo.h>
#include "atomic.h"
#include "atomic.h"
const
char
*
__langinfo
(
nl_item
);
const
char
*
__
nl_
langinfo
(
nl_item
);
char
*
__asctime
(
const
struct
tm
*
restrict
tm
,
char
*
restrict
buf
)
char
*
__asctime
(
const
struct
tm
*
restrict
tm
,
char
*
restrict
buf
)
{
{
/* FIXME: change __langinfo to __C_langinfo once we have locales */
/* FIXME: change __nl_langinfo to __nl_langinfo_l with explicit C
* locale once we have locales */
if
(
snprintf
(
buf
,
26
,
"%.3s %.3s%3d %.2d:%.2d:%.2d %d
\n
"
,
if
(
snprintf
(
buf
,
26
,
"%.3s %.3s%3d %.2d:%.2d:%.2d %d
\n
"
,
__langinfo
(
ABDAY_1
+
tm
->
tm_wday
),
__
nl_
langinfo
(
ABDAY_1
+
tm
->
tm_wday
),
__langinfo
(
ABMON_1
+
tm
->
tm_mon
),
__
nl_
langinfo
(
ABMON_1
+
tm
->
tm_mon
),
tm
->
tm_mday
,
tm
->
tm_hour
,
tm
->
tm_mday
,
tm
->
tm_hour
,
tm
->
tm_min
,
tm
->
tm_sec
,
tm
->
tm_min
,
tm
->
tm_sec
,
1900
+
tm
->
tm_year
)
>=
26
)
1900
+
tm
->
tm_year
)
>=
26
)
...
...
src/time/strftime.c
浏览文件 @
87be54a1
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
// FIXME: integer overflows
// FIXME: integer overflows
const
char
*
__
langinfo
(
nl_item
);
const
char
*
__
nl_langinfo_l
(
nl_item
,
locale_t
);
static
int
is_leap
(
int
y
)
static
int
is_leap
(
int
y
)
{
{
...
@@ -200,12 +200,12 @@ number:
...
@@ -200,12 +200,12 @@ number:
l
+=
snprintf
(
s
+
l
,
n
-
l
,
fmt
,
val
);
l
+=
snprintf
(
s
+
l
,
n
-
l
,
fmt
,
val
);
continue
;
continue
;
nl_strcat:
nl_strcat:
l
+=
snprintf
(
s
+
l
,
n
-
l
,
"%s"
,
__
langinfo
(
item
));
l
+=
snprintf
(
s
+
l
,
n
-
l
,
"%s"
,
__
nl_langinfo_l
(
item
,
loc
));
continue
;
continue
;
nl_strftime:
nl_strftime:
fmt
=
__
langinfo
(
item
);
fmt
=
__
nl_langinfo_l
(
item
,
loc
);
recu_strftime:
recu_strftime:
l
+=
strftime
(
s
+
l
,
n
-
l
,
fmt
,
tm
);
l
+=
__strftime_l
(
s
+
l
,
n
-
l
,
fmt
,
tm
,
loc
);
}
}
if
(
l
>=
n
)
return
0
;
if
(
l
>=
n
)
return
0
;
s
[
l
]
=
0
;
s
[
l
]
=
0
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录