使用 JavaScript能使本网站更好的工作。
首页
帮助
登录
cacalabs
/
toilet
镜像自地址
https://github.com/cacalabs/toilet.git
关注
1
点赞
0
派生
0
代码
工单
0
版本发布
0
百科
动态
浏览代码
* Add feof() to the list of I/O functions.
pull/1/head
Sam Hocevar
sam
18 年前
父节点
e21d948a17
当前提交
7b76d57ab9
共有
3 个文件被更改
,包括
7 次插入
和
1 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+1
-1
src/figlet.c
+5
-0
src/io.c
+1
-0
src/io.h
+ 1
- 1
src/figlet.c
查看文件
@@ -168,7 +168,7 @@ static int open_font(context_t *cx)
cx->glyphs = 0;
cx->lookup = NULL;
for(i = 0, size = 0; !
f
eof(f); cx->glyphs++)
for(i = 0, size = 0; !
toi
eof(f); cx->glyphs++)
{
if((cx->glyphs % 2048) == 0)
cx->lookup = realloc(cx->lookup,
+ 5
- 0
src/io.c
查看文件
@@ -43,6 +43,11 @@ int toiclose(TOIFILE *toif)
return fclose(f);
}
int toieof(TOIFILE *toif)
{
return feof(toif->f);
}
char *toigets(char *s, int size, TOIFILE *toif)
{
return fgets(s, size, toif->f);
+ 1
- 0
src/io.h
查看文件
@@ -22,5 +22,6 @@ TOIFILE;
TOIFILE *toiopen(const char *, const char *);
int toiclose(TOIFILE *);
int toieof(TOIFILE *);
char *toigets(char *, int, TOIFILE *);
撰写
预览
正在加载...
取消
保存