Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Musl
提交
4e2cc2bd
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看板
未验证
提交
4e2cc2bd
编写于
7月 04, 2023
作者:
O
openharmony_ci
提交者:
Gitee
7月 04, 2023
浏览文件
操作
浏览文件
下载
差异文件
!965 fix updater crash
Merge pull request !965 from Wang Yaofeng/fixfgets
上级
e7a4942b
d8905b03
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
17 addition
and
25 deletion
+17
-25
porting/linux/user/src/stdio/fgets.c
porting/linux/user/src/stdio/fgets.c
+17
-25
未找到文件。
porting/linux/user/src/stdio/fgets.c
浏览文件 @
4e2cc2bd
...
...
@@ -2,7 +2,6 @@
#include <string.h>
#define MIN(a,b) ((a)<(b) ? (a) : (b))
char
*
fgets
(
char
*
restrict
s
,
int
n
,
FILE
*
restrict
f
)
{
char
*
p
=
s
;
...
...
@@ -15,42 +14,35 @@ char *fgets(char *restrict s, int n, FILE *restrict f)
if
(
n
--<=
1
)
{
f
->
mode
|=
f
->
mode
-
1
;
FUNLOCK
(
f
);
if
(
n
)
{
return
NULL
;
}
*
s
=
'\0'
;
if
(
n
)
return
0
;
*
s
=
0
;
return
s
;
}
while
(
n
)
{
if
(
f
->
rpos
==
f
->
rend
&&
__fill_buffer
(
f
))
{
if
(
p
==
s
||
!
feof
(
f
))
{
s
=
0
;
}
break
;
if
(
f
->
rpos
!=
f
->
rend
)
{
z
=
memchr
(
f
->
rpos
,
'\n'
,
MIN
(
f
->
rend
-
f
->
rpos
,
n
));
k
=
z
?
z
-
f
->
rpos
+
1
:
f
->
rend
-
f
->
rpos
;
k
=
MIN
(
k
,
n
);
memcpy
(
p
,
f
->
rpos
,
k
);
f
->
rpos
+=
k
;
p
+=
k
;
n
-=
k
;
if
(
z
||
!
n
)
break
;
}
/* search minimal length */
k
=
MIN
(
f
->
rend
-
f
->
rpos
,
n
);
z
=
memchr
(
f
->
rpos
,
'\n'
,
k
);
if
(
z
!=
NULL
)
{
k
=
z
-
f
->
rpos
+
1
;
}
memcpy
(
p
,
f
->
rpos
,
k
);
f
->
rpos
+=
k
;
p
+=
k
;
n
-=
k
;
if
(
z
||
!
n
)
{
if
((
c
=
getc_unlocked
(
f
))
<
0
)
{
if
(
p
==
s
||
!
feof
(
f
))
s
=
0
;
break
;
}
n
--
;
if
((
*
p
++
=
c
)
==
'\n'
)
break
;
}
if
(
s
)
{
*
p
=
0
;
}
if
(
s
)
*
p
=
0
;
FUNLOCK
(
f
);
return
s
;
}
weak_alias
(
fgets
,
fgets_unlocked
);
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录