# lua-system-constants **Repository Path**: mirrors_addons/lua-system-constants ## Basic Information - **Project Name**: lua-system-constants - **Description**: Lua utility library to retrieve system constants values, based on the architecture this library has been complied for. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-03 - **Last Updated**: 2026-05-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # lua_system_constants Lua utility library to retrieve system constants values, based on the architecture this library has been complied for. ## Usage ```lua local system_constants = require "lua_system_constants" print(system_constants.O_WRONLY()) print(system_constants.O_CREAT()) print(system_constants.O_APPEND()) print(system_constants.O_TRUNC()) print(system_constants.S_IWUSR()) print(system_constants.S_IRUSR()) print(system_constants.S_IXUSR()) ```