{"id":18892393,"url":"https://github.com/hf/lua-noio","last_synced_at":"2026-02-26T07:30:15.465Z","repository":{"id":143824618,"uuid":"169868553","full_name":"hf/lua-noio","owner":"hf","description":"Lua without IO.","archived":false,"fork":false,"pushed_at":"2019-02-11T17:00:57.000Z","size":352,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-12-31T06:29:54.347Z","etag":null,"topics":["lua"],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hf.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-02-09T13:14:30.000Z","updated_at":"2023-03-05T02:31:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"16a14f2c-3562-414d-9df1-938ec9f5cc18","html_url":"https://github.com/hf/lua-noio","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hf%2Flua-noio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hf%2Flua-noio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hf%2Flua-noio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hf%2Flua-noio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hf","download_url":"https://codeload.github.com/hf/lua-noio/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239868642,"owners_count":19710474,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["lua"],"created_at":"2024-11-08T08:01:53.604Z","updated_at":"2026-02-26T07:30:13.418Z","avatar_url":"https://github.com/hf.png","language":"C","readme":"# Lua without IO\n\nThis is a customized version of Lua that does not do any IO.\n\nYou can toggle whether it's built with IO support in the `luaconfig.h` header,\nwhere you can undefine the `LUA_NOIO` flag.\n\nAdditionally, you'd need to change the `src/Makefile` to build `lua` and\n`luac`, as they use a lot of the Lua IO functionality.\n\n`src/noio` is a test program that checks the no-IO setup.\n\nUsers of the no-IO version should probably implement these macros to provide\noutput for their no-IO system, in `lauxlib.h`. They are noop by default.\n\n```c\n/* print a string */\n#if !defined(lua_writestring)\n#define lua_writestring(s,l) {}\n#endif\n\n/* print a newline and flush the output */\n#if !defined(lua_writeline)\n#define lua_writeline() {}\n#endif\n\n/* print an error message */\n#if !defined(lua_writestringerror)\n#define lua_writestringerror(s,p) {}\n#endif\n```\n\n## License \n\nLua is free software and licensed under the MIT License by \n[PUC-Rio](http://www.puc-rio.br/index.html).\n\nAll modifications herein are also licensed under the MIT License.\n\nRead the full text in the LICENSE.txt file.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhf%2Flua-noio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhf%2Flua-noio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhf%2Flua-noio/lists"}