summaryrefslogtreecommitdiff
path: root/liolib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-05-14 16:03:43 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-05-14 16:03:43 -0300
commit524ae9fc3dd8acc69d587c3ed0599d8c95205381 (patch)
treeb770646f61c77fb6d0c759e1b73dcc948de94e65 /liolib.c
parent0ddedaee92afe474b2a919861437af95b34eec08 (diff)
downloadlua-524ae9fc3dd8acc69d587c3ed0599d8c95205381.tar.gz
lua-524ae9fc3dd8acc69d587c3ed0599d8c95205381.tar.bz2
lua-524ae9fc3dd8acc69d587c3ed0599d8c95205381.zip
new function `setvbuf'
Diffstat (limited to 'liolib.c')
-rw-r--r--liolib.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/liolib.c b/liolib.c
index dea29ad1..02786883 100644
--- a/liolib.c
+++ b/liolib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: liolib.c,v 2.40 2003/04/30 20:15:55 roberto Exp roberto $ 2** $Id: liolib.c,v 2.41 2003/04/30 20:24:38 roberto Exp roberto $
3** Standard I/O (and system) library 3** Standard I/O (and system) library
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -457,6 +457,17 @@ static int f_seek (lua_State *L) {
457} 457}
458 458
459 459
460static int f_setvbuf (lua_State *L) {
461 static const int mode[] = {_IONBF, _IOFBF, _IOLBF};
462 static const char *const modenames[] = {"no", "full", "line", NULL};
463 FILE *f = tofile(L, 1);
464 int op = luaL_findstring(luaL_checkstring(L, 2), modenames);
465 luaL_argcheck(L, op != -1, 2, "invalid mode");
466 return pushresult(L, setvbuf(f, NULL, mode[op], 0) == 0, NULL);
467}
468
469
470
460static int io_flush (lua_State *L) { 471static int io_flush (lua_State *L) {
461 return pushresult(L, fflush(getiofile(L, IO_OUTPUT)) == 0, NULL); 472 return pushresult(L, fflush(getiofile(L, IO_OUTPUT)) == 0, NULL);
462} 473}
@@ -488,6 +499,7 @@ static const luaL_reg flib[] = {
488 {"read", f_read}, 499 {"read", f_read},
489 {"lines", f_lines}, 500 {"lines", f_lines},
490 {"seek", f_seek}, 501 {"seek", f_seek},
502 {"setvbuf", f_setvbuf},
491 {"write", f_write}, 503 {"write", f_write},
492 {"close", io_close}, 504 {"close", io_close},
493 {"__gc", io_gc}, 505 {"__gc", io_gc},