亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? liolib.c

?? 腳本語言lua-5.1的源代碼, 非常的經典!
?? C
字號:
/*** $Id: liolib.c,v 2.72 2006/01/28 12:59:13 roberto Exp $** Standard I/O (and system) library** See Copyright Notice in lua.h*/#include <errno.h>#include <stdio.h>#include <stdlib.h>#include <string.h>#define liolib_c#define LUA_LIB#include "lua.h"#include "lauxlib.h"#include "lualib.h"#define IO_INPUT	1#define IO_OUTPUT	2static const char *const fnames[] = {"input", "output"};static int pushresult (lua_State *L, int i, const char *filename) {  int en = errno;  /* calls to Lua API may change this value */  if (i) {    lua_pushboolean(L, 1);    return 1;  }  else {    lua_pushnil(L);    if (filename)      lua_pushfstring(L, "%s: %s", filename, strerror(en));    else      lua_pushfstring(L, "%s", strerror(en));    lua_pushinteger(L, en);    return 3;  }}static void fileerror (lua_State *L, int arg, const char *filename) {  lua_pushfstring(L, "%s: %s", filename, strerror(errno));  luaL_argerror(L, arg, lua_tostring(L, -1));}#define topfile(L)	((FILE **)luaL_checkudata(L, 1, LUA_FILEHANDLE))static int io_type (lua_State *L) {  void *ud;  luaL_checkany(L, 1);  ud = lua_touserdata(L, 1);  lua_getfield(L, LUA_REGISTRYINDEX, LUA_FILEHANDLE);  if (ud == NULL || !lua_getmetatable(L, 1) || !lua_rawequal(L, -2, -1))    lua_pushnil(L);  /* not a file */  else if (*((FILE **)ud) == NULL)    lua_pushliteral(L, "closed file");  else    lua_pushliteral(L, "file");  return 1;}static FILE *tofile (lua_State *L) {  FILE **f = topfile(L);  if (*f == NULL)    luaL_error(L, "attempt to use a closed file");  return *f;}/*** When creating file handles, always creates a `closed' file handle** before opening the actual file; so, if there is a memory error, the** file is not left opened.*/static FILE **newfile (lua_State *L) {  FILE **pf = (FILE **)lua_newuserdata(L, sizeof(FILE *));  *pf = NULL;  /* file handle is currently `closed' */  luaL_getmetatable(L, LUA_FILEHANDLE);  lua_setmetatable(L, -2);  return pf;}/*** this function has a separated environment, which defines the** correct __close for 'popen' files*/static int io_pclose (lua_State *L) {  FILE **p = topfile(L);  int ok = lua_pclose(L, *p);  if (ok) *p = NULL;  return pushresult(L, ok, NULL);}static int io_fclose (lua_State *L) {  FILE **p = topfile(L);  int ok = (fclose(*p) == 0);  if (ok) *p = NULL;  return pushresult(L, ok, NULL);}static int aux_close (lua_State *L) {  lua_getfenv(L, 1);  lua_getfield(L, -1, "__close");  return (lua_tocfunction(L, -1))(L);}static int io_close (lua_State *L) {  if (lua_isnone(L, 1))    lua_rawgeti(L, LUA_ENVIRONINDEX, IO_OUTPUT);  tofile(L);  /* make sure argument is a file */  return aux_close(L);}static int io_gc (lua_State *L) {  FILE *f = *topfile(L);  /* ignore closed files and standard files */  if (f != NULL && f != stdin && f != stdout && f != stderr)    aux_close(L);  return 0;}static int io_tostring (lua_State *L) {  FILE *f = *topfile(L);  if (f == NULL)    lua_pushstring(L, "file (closed)");  else    lua_pushfstring(L, "file (%p)", f);  return 1;}static int io_open (lua_State *L) {  const char *filename = luaL_checkstring(L, 1);  const char *mode = luaL_optstring(L, 2, "r");  FILE **pf = newfile(L);  *pf = fopen(filename, mode);  return (*pf == NULL) ? pushresult(L, 0, filename) : 1;}static int io_popen (lua_State *L) {  const char *filename = luaL_checkstring(L, 1);  const char *mode = luaL_optstring(L, 2, "r");  FILE **pf = newfile(L);  *pf = lua_popen(L, filename, mode);  return (*pf == NULL) ? pushresult(L, 0, filename) : 1;}static int io_tmpfile (lua_State *L) {  FILE **pf = newfile(L);  *pf = tmpfile();  return (*pf == NULL) ? pushresult(L, 0, NULL) : 1;}static FILE *getiofile (lua_State *L, int findex) {  FILE *f;  lua_rawgeti(L, LUA_ENVIRONINDEX, findex);  f = *(FILE **)lua_touserdata(L, -1);  if (f == NULL)    luaL_error(L, "standard %s file is closed", fnames[findex - 1]);  return f;}static int g_iofile (lua_State *L, int f, const char *mode) {  if (!lua_isnoneornil(L, 1)) {    const char *filename = lua_tostring(L, 1);    if (filename) {      FILE **pf = newfile(L);      *pf = fopen(filename, mode);      if (*pf == NULL)        fileerror(L, 1, filename);    }    else {      tofile(L);  /* check that it's a valid file handle */      lua_pushvalue(L, 1);    }    lua_rawseti(L, LUA_ENVIRONINDEX, f);  }  /* return current value */  lua_rawgeti(L, LUA_ENVIRONINDEX, f);  return 1;}static int io_input (lua_State *L) {  return g_iofile(L, IO_INPUT, "r");}static int io_output (lua_State *L) {  return g_iofile(L, IO_OUTPUT, "w");}static int io_readline (lua_State *L);static void aux_lines (lua_State *L, int idx, int toclose) {  lua_pushvalue(L, idx);  lua_pushboolean(L, toclose);  /* close/not close file when finished */  lua_pushcclosure(L, io_readline, 2);}static int f_lines (lua_State *L) {  tofile(L);  /* check that it's a valid file handle */  aux_lines(L, 1, 0);  return 1;}static int io_lines (lua_State *L) {  if (lua_isnoneornil(L, 1)) {  /* no arguments? */    /* will iterate over default input */    lua_rawgeti(L, LUA_ENVIRONINDEX, IO_INPUT);    return f_lines(L);  }  else {    const char *filename = luaL_checkstring(L, 1);    FILE **pf = newfile(L);    *pf = fopen(filename, "r");    if (*pf == NULL)      fileerror(L, 1, filename);    aux_lines(L, lua_gettop(L), 1);    return 1;  }}/*** {======================================================** READ** =======================================================*/static int read_number (lua_State *L, FILE *f) {  lua_Number d;  if (fscanf(f, LUA_NUMBER_SCAN, &d) == 1) {    lua_pushnumber(L, d);    return 1;  }  else return 0;  /* read fails */}static int test_eof (lua_State *L, FILE *f) {  int c = getc(f);  ungetc(c, f);  lua_pushlstring(L, NULL, 0);  return (c != EOF);}static int read_line (lua_State *L, FILE *f) {  luaL_Buffer b;  luaL_buffinit(L, &b);  for (;;) {    size_t l;    char *p = luaL_prepbuffer(&b);    if (fgets(p, LUAL_BUFFERSIZE, f) == NULL) {  /* eof? */      luaL_pushresult(&b);  /* close buffer */      return (lua_strlen(L, -1) > 0);  /* check whether read something */    }    l = strlen(p);    if (l == 0 || p[l-1] != '\n')      luaL_addsize(&b, l);    else {      luaL_addsize(&b, l - 1);  /* do not include `eol' */      luaL_pushresult(&b);  /* close buffer */      return 1;  /* read at least an `eol' */    }  }}static int read_chars (lua_State *L, FILE *f, size_t n) {  size_t rlen;  /* how much to read */  size_t nr;  /* number of chars actually read */  luaL_Buffer b;  luaL_buffinit(L, &b);  rlen = LUAL_BUFFERSIZE;  /* try to read that much each time */  do {    char *p = luaL_prepbuffer(&b);    if (rlen > n) rlen = n;  /* cannot read more than asked */    nr = fread(p, sizeof(char), rlen, f);    luaL_addsize(&b, nr);    n -= nr;  /* still have to read `n' chars */  } while (n > 0 && nr == rlen);  /* until end of count or eof */  luaL_pushresult(&b);  /* close buffer */  return (n == 0 || lua_strlen(L, -1) > 0);}static int g_read (lua_State *L, FILE *f, int first) {  int nargs = lua_gettop(L) - 1;  int success;  int n;  clearerr(f);  if (nargs == 0) {  /* no arguments? */    success = read_line(L, f);    n = first+1;  /* to return 1 result */  }  else {  /* ensure stack space for all results and for auxlib's buffer */    luaL_checkstack(L, nargs+LUA_MINSTACK, "too many arguments");    success = 1;    for (n = first; nargs-- && success; n++) {      if (lua_type(L, n) == LUA_TNUMBER) {        size_t l = (size_t)lua_tointeger(L, n);        success = (l == 0) ? test_eof(L, f) : read_chars(L, f, l);      }      else {        const char *p = lua_tostring(L, n);        luaL_argcheck(L, p && p[0] == '*', n, "invalid option");        switch (p[1]) {          case 'n':  /* number */            success = read_number(L, f);            break;          case 'l':  /* line */            success = read_line(L, f);            break;          case 'a':  /* file */            read_chars(L, f, ~((size_t)0));  /* read MAX_SIZE_T chars */            success = 1; /* always success */            break;          default:            return luaL_argerror(L, n, "invalid format");        }      }    }  }  if (ferror(f))    return pushresult(L, 0, NULL);  if (!success) {    lua_pop(L, 1);  /* remove last result */    lua_pushnil(L);  /* push nil instead */  }  return n - first;}static int io_read (lua_State *L) {  return g_read(L, getiofile(L, IO_INPUT), 1);}static int f_read (lua_State *L) {  return g_read(L, tofile(L), 2);}static int io_readline (lua_State *L) {  FILE *f = *(FILE **)lua_touserdata(L, lua_upvalueindex(1));  int sucess;  if (f == NULL)  /* file is already closed? */    luaL_error(L, "file is already closed");  sucess = read_line(L, f);  if (ferror(f))    return luaL_error(L, "%s", strerror(errno));  if (sucess) return 1;  else {  /* EOF */    if (lua_toboolean(L, lua_upvalueindex(2))) {  /* generator created file? */      lua_settop(L, 0);      lua_pushvalue(L, lua_upvalueindex(1));      aux_close(L);  /* close it */    }    return 0;  }}/* }====================================================== */static int g_write (lua_State *L, FILE *f, int arg) {  int nargs = lua_gettop(L) - 1;  int status = 1;  for (; nargs--; arg++) {    if (lua_type(L, arg) == LUA_TNUMBER) {      /* optimization: could be done exactly as for strings */      status = status &&          fprintf(f, LUA_NUMBER_FMT, lua_tonumber(L, arg)) > 0;    }    else {      size_t l;      const char *s = luaL_checklstring(L, arg, &l);      status = status && (fwrite(s, sizeof(char), l, f) == l);    }  }  return pushresult(L, status, NULL);}static int io_write (lua_State *L) {  return g_write(L, getiofile(L, IO_OUTPUT), 1);}static int f_write (lua_State *L) {  return g_write(L, tofile(L), 2);}static int f_seek (lua_State *L) {  static const int mode[] = {SEEK_SET, SEEK_CUR, SEEK_END};  static const char *const modenames[] = {"set", "cur", "end", NULL};  FILE *f = tofile(L);  int op = luaL_checkoption(L, 2, "cur", modenames);  long offset = luaL_optlong(L, 3, 0);  op = fseek(f, offset, mode[op]);  if (op)    return pushresult(L, 0, NULL);  /* error */  else {    lua_pushinteger(L, ftell(f));    return 1;  }}static int f_setvbuf (lua_State *L) {  static const int mode[] = {_IONBF, _IOFBF, _IOLBF};  static const char *const modenames[] = {"no", "full", "line", NULL};  FILE *f = tofile(L);  int op = luaL_checkoption(L, 2, NULL, modenames);  lua_Integer sz = luaL_optinteger(L, 3, LUAL_BUFFERSIZE);  int res = setvbuf(f, NULL, mode[op], sz);  return pushresult(L, res == 0, NULL);}static int io_flush (lua_State *L) {  return pushresult(L, fflush(getiofile(L, IO_OUTPUT)) == 0, NULL);}static int f_flush (lua_State *L) {  return pushresult(L, fflush(tofile(L)) == 0, NULL);}static const luaL_Reg iolib[] = {  {"close", io_close},  {"flush", io_flush},  {"input", io_input},  {"lines", io_lines},  {"open", io_open},  {"output", io_output},  {"popen", io_popen},  {"read", io_read},  {"tmpfile", io_tmpfile},  {"type", io_type},  {"write", io_write},  {NULL, NULL}};static const luaL_Reg flib[] = {  {"close", io_close},  {"flush", f_flush},  {"lines", f_lines},  {"read", f_read},  {"seek", f_seek},  {"setvbuf", f_setvbuf},  {"write", f_write},  {"__gc", io_gc},  {"__tostring", io_tostring},  {NULL, NULL}};static void createmeta (lua_State *L) {  luaL_newmetatable(L, LUA_FILEHANDLE);  /* create metatable for file handles */  lua_pushvalue(L, -1);  /* push metatable */  lua_setfield(L, -2, "__index");  /* metatable.__index = metatable */  luaL_register(L, NULL, flib);  /* file methods */}static void createstdfile (lua_State *L, FILE *f, int k, const char *fname) {  *newfile(L) = f;  if (k > 0) {    lua_pushvalue(L, -1);    lua_rawseti(L, LUA_ENVIRONINDEX, k);  }  lua_setfield(L, -2, fname);}LUALIB_API int luaopen_io (lua_State *L) {  createmeta(L);  /* create (private) environment (with fields IO_INPUT, IO_OUTPUT, __close) */  lua_createtable(L, 2, 1);  lua_replace(L, LUA_ENVIRONINDEX);  /* open library */  luaL_register(L, LUA_IOLIBNAME, iolib);  /* create (and set) default files */  createstdfile(L, stdin, IO_INPUT, "stdin");  createstdfile(L, stdout, IO_OUTPUT, "stdout");  createstdfile(L, stderr, 0, "stderr");  /* create environment for 'popen' */  lua_getfield(L, -1, "popen");  lua_createtable(L, 0, 1);  lua_pushcfunction(L, io_pclose);  lua_setfield(L, -2, "__close");  lua_setfenv(L, -2);  lua_pop(L, 1);  /* pop 'popen' */  /* set default close function */  lua_pushcfunction(L, io_fclose);  lua_setfield(L, LUA_ENVIRONINDEX, "__close");  return 1;}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
视频在线观看一区| 色综合久久中文字幕综合网| 成人97人人超碰人人99| 欧美人体做爰大胆视频| 中文字幕一区二区三区四区不卡| 亚洲成人精品影院| 91丝袜美女网| 国产视频一区二区三区在线观看| 日本视频一区二区三区| 日本伦理一区二区| 中文字幕乱码日本亚洲一区二区| 精品一区二区免费在线观看| 欧美又粗又大又爽| 一区二区视频在线| 成人国产精品免费观看| 久久一二三国产| 日日欢夜夜爽一区| 欧美精品在欧美一区二区少妇| 亚洲欧洲日韩综合一区二区| 国产九色sp调教91| 精品第一国产综合精品aⅴ| 日韩综合小视频| 欧美精品久久99| 性做久久久久久免费观看欧美| 日韩精品专区在线影院重磅| 一区二区三区四区高清精品免费观看| 丰满少妇久久久久久久| 国产亚洲精品aa| 丁香啪啪综合成人亚洲小说 | 中文一区在线播放| 久久电影网站中文字幕| 欧美一级午夜免费电影| 日本午夜一本久久久综合| 884aa四虎影成人精品一区| 亚洲线精品一区二区三区八戒| 色综合天天综合给合国产| 午夜伊人狠狠久久| 91国在线观看| 亚洲va中文字幕| 欧美疯狂性受xxxxx喷水图片| 五月婷婷久久综合| 欧美一区二区精品| 国产一区二区三区电影在线观看| 国产亚洲一区二区三区四区 | 在线免费观看日本一区| 亚洲精品国产高清久久伦理二区| 91豆麻精品91久久久久久| 一区二区三区国产| 这里只有精品电影| 久久不见久久见免费视频7| 国产日韩欧美精品一区| gogogo免费视频观看亚洲一| 亚洲精品日产精品乱码不卡| 欧美精品乱码久久久久久| 久久av中文字幕片| 中文字幕制服丝袜成人av| 色综合色狠狠天天综合色| 午夜欧美电影在线观看| 亚洲精品一区二区三区影院| 成人小视频免费观看| 亚洲国产精品一区二区尤物区| 欧美精选一区二区| 丁香一区二区三区| 亚洲精品国产无天堂网2021| 欧美一区二区免费观在线| 国产精品88av| 亚洲精品精品亚洲| 日韩限制级电影在线观看| 成人激情小说网站| 日韩vs国产vs欧美| 国产精品久久久久9999吃药| 欧美日韩不卡在线| 成人av综合一区| 天天影视网天天综合色在线播放| 久久精品亚洲精品国产欧美kt∨| 欧洲色大大久久| 国产91丝袜在线观看| 91蜜桃在线观看| 日韩成人免费在线| 一区二区中文字幕在线| 日韩欧美一区二区免费| 精品久久久网站| 欧美影院一区二区三区| 粉嫩高潮美女一区二区三区| 日韩av一级片| 亚洲欧美激情小说另类| 国产亚洲视频系列| 欧美一个色资源| 欧美性猛片xxxx免费看久爱| 成人精品视频一区二区三区尤物| 日本成人在线看| 亚洲一区影音先锋| 中文字幕中文乱码欧美一区二区 | 国内精品视频一区二区三区八戒| 一区二区三区免费| 国产精品美女视频| 久久综合成人精品亚洲另类欧美| 欧美日韩国产片| 欧美最猛黑人xxxxx猛交| 国产成人综合网| 国模冰冰炮一区二区| 日本不卡123| 丝袜亚洲精品中文字幕一区| 亚洲已满18点击进入久久| 一区在线观看视频| 国产精品久久免费看| 中文字幕成人av| 中文字幕高清不卡| 日本一区二区不卡视频| 国产日韩欧美电影| 久久蜜桃一区二区| 久久这里只有精品首页| 精品久久久久99| 久久只精品国产| 国产日韩欧美高清| 国产精品久久久久一区| 国产精品三级av| 国产精品久久久久久久久久久免费看 | 亚洲国产精品久久人人爱蜜臀| 亚洲色图在线看| 一区二区三区四区国产精品| 亚洲国产欧美在线人成| 亚洲韩国精品一区| 青青草国产精品97视觉盛宴 | 欧美一级片在线看| 日韩一级视频免费观看在线| 精品国精品国产| 国产欧美日韩不卡免费| 自拍av一区二区三区| 亚洲一区av在线| 麻豆精品视频在线观看| 懂色一区二区三区免费观看| gogo大胆日本视频一区| 欧美中文一区二区三区| 日韩午夜三级在线| 国产精品系列在线| 五月激情综合色| 国产乱码精品一品二品| 95精品视频在线| 欧美日韩一二三| www激情久久| 亚洲三级在线免费| 丝袜美腿成人在线| 国产经典欧美精品| 欧美性感一类影片在线播放| 日韩一区国产二区欧美三区| 国产精品卡一卡二卡三| 日韩主播视频在线| 国产传媒日韩欧美成人| 欧美午夜在线观看| 中文字幕精品一区二区精品绿巨人| 一区二区三区四区五区视频在线观看| 秋霞午夜鲁丝一区二区老狼| 成人自拍视频在线| 91精品国产高清一区二区三区| 国产女人aaa级久久久级| 天堂蜜桃91精品| 成人午夜在线视频| 日韩欧美视频在线| 亚洲视频一二三| 精品一区二区三区在线观看 | 最新国产成人在线观看| 日本在线不卡一区| 91视频观看视频| 精品国产一区久久| 亚洲va欧美va人人爽午夜 | 国产一二精品视频| 欧美日韩亚洲综合一区二区三区| 久久久www成人免费毛片麻豆 | 一区二区三区中文字幕电影| 国产麻豆午夜三级精品| 欧美日本一区二区在线观看| 中文字幕一区在线| 激情国产一区二区| 欧美人与z0zoxxxx视频| 亚洲欧美乱综合| 成人av午夜影院| 久久久久久久久伊人| 免费在线一区观看| 欧美精品九九99久久| 夜夜操天天操亚洲| 91视视频在线观看入口直接观看www | 国产成人啪午夜精品网站男同| 欧美一卡二卡在线| 三级久久三级久久久| 欧美日韩一区二区在线观看视频| 亚洲欧美日韩国产综合| 成人亚洲一区二区一| 国产亚洲自拍一区| 国产精品香蕉一区二区三区| 欧美电影免费观看高清完整版在| 午夜天堂影视香蕉久久| 欧美日韩五月天| 亚洲123区在线观看| 精品视频在线免费看| 亚洲妇熟xx妇色黄| 欧美日韩三级一区二区| 亚洲国产视频在线| 欧美日韩在线播放| 丝袜亚洲精品中文字幕一区|