S JavaScriptem funguje tato webová stránka lépe.
Domů
Nápověda
Přihlásit se
cacalabs
/
toilet
zrcadlo
https://github.com/cacalabs/toilet.git
Sledovat
1
Oblíbit
0
Rozštěpit
0
Zdrojový kód
Úkoly
0
Vydání
0
Wiki
Aktivita
Procházet zdrojové kódy
* Add feof() to the list of I/O functions.
pull/1/head
Sam Hocevar
sam
před 18 roky
rodič
e21d948a17
revize
7b76d57ab9
3 změnil soubory
, kde provedl
7 přidání
a
1 odebrání
Rozdělené zobrazení
Diff Options
Zobrazit statistiky
Stáhněte soubor opravy
Stáhněte rozdílový soubor
+1
-1
src/figlet.c
+5
-0
src/io.c
+1
-0
src/io.h
+ 1
- 1
src/figlet.c
Zobrazit soubor
@@ -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
Zobrazit soubor
@@ -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
Zobrazit soubor
@@ -22,5 +22,6 @@ TOIFILE;
TOIFILE *toiopen(const char *, const char *);
int toiclose(TOIFILE *);
int toieof(TOIFILE *);
char *toigets(char *, int, TOIFILE *);
Zapsat
Náhled
Načítá se…
Zrušit
Uložit