├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── amx ├── amx.c ├── amx.h ├── amxplugin.c ├── getch.c ├── getch.h ├── osdefs.h ├── plugin.h ├── plugincommon.h └── sclinux.h ├── args.h ├── array.cpp ├── array.h ├── data.cpp ├── data.h ├── docker ├── build.sh ├── build_ubuntu-18.04 │ ├── Dockerfile │ ├── README.md │ └── docker-entrypoint.sh ├── build_ubuntu-20.04 │ ├── Dockerfile │ ├── README.md │ └── docker-entrypoint.sh └── build_ubuntu-22.04 │ ├── Dockerfile │ ├── README.md │ └── docker-entrypoint.sh ├── enum.cpp ├── enum.h ├── error.cpp ├── error.h ├── kustom.cpp ├── pawn.json ├── release.bat ├── specifiers.cpp ├── specifiers.h ├── sscanf.cpp ├── sscanf.def ├── sscanf.h ├── sscanf2.inc ├── tests ├── sscanfErr.pwn └── sscanfM.pwn ├── utils.cpp └── utils.h /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/README.md -------------------------------------------------------------------------------- /amx/amx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/amx/amx.c -------------------------------------------------------------------------------- /amx/amx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/amx/amx.h -------------------------------------------------------------------------------- /amx/amxplugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/amx/amxplugin.c -------------------------------------------------------------------------------- /amx/getch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/amx/getch.c -------------------------------------------------------------------------------- /amx/getch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/amx/getch.h -------------------------------------------------------------------------------- /amx/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/amx/osdefs.h -------------------------------------------------------------------------------- /amx/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/amx/plugin.h -------------------------------------------------------------------------------- /amx/plugincommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/amx/plugincommon.h -------------------------------------------------------------------------------- /amx/sclinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/amx/sclinux.h -------------------------------------------------------------------------------- /args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/args.h -------------------------------------------------------------------------------- /array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/array.cpp -------------------------------------------------------------------------------- /array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/array.h -------------------------------------------------------------------------------- /data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/data.cpp -------------------------------------------------------------------------------- /data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/data.h -------------------------------------------------------------------------------- /docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/docker/build.sh -------------------------------------------------------------------------------- /docker/build_ubuntu-18.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/docker/build_ubuntu-18.04/Dockerfile -------------------------------------------------------------------------------- /docker/build_ubuntu-18.04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/docker/build_ubuntu-18.04/README.md -------------------------------------------------------------------------------- /docker/build_ubuntu-18.04/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/docker/build_ubuntu-18.04/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/build_ubuntu-20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/docker/build_ubuntu-20.04/Dockerfile -------------------------------------------------------------------------------- /docker/build_ubuntu-20.04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/docker/build_ubuntu-20.04/README.md -------------------------------------------------------------------------------- /docker/build_ubuntu-20.04/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/docker/build_ubuntu-20.04/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/build_ubuntu-22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/docker/build_ubuntu-22.04/Dockerfile -------------------------------------------------------------------------------- /docker/build_ubuntu-22.04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/docker/build_ubuntu-22.04/README.md -------------------------------------------------------------------------------- /docker/build_ubuntu-22.04/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/docker/build_ubuntu-22.04/docker-entrypoint.sh -------------------------------------------------------------------------------- /enum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/enum.cpp -------------------------------------------------------------------------------- /enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/enum.h -------------------------------------------------------------------------------- /error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/error.cpp -------------------------------------------------------------------------------- /error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/error.h -------------------------------------------------------------------------------- /kustom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/kustom.cpp -------------------------------------------------------------------------------- /pawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/pawn.json -------------------------------------------------------------------------------- /release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/release.bat -------------------------------------------------------------------------------- /specifiers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/specifiers.cpp -------------------------------------------------------------------------------- /specifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/specifiers.h -------------------------------------------------------------------------------- /sscanf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/sscanf.cpp -------------------------------------------------------------------------------- /sscanf.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/sscanf.def -------------------------------------------------------------------------------- /sscanf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/sscanf.h -------------------------------------------------------------------------------- /sscanf2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/sscanf2.inc -------------------------------------------------------------------------------- /tests/sscanfErr.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/tests/sscanfErr.pwn -------------------------------------------------------------------------------- /tests/sscanfM.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/tests/sscanfM.pwn -------------------------------------------------------------------------------- /utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/utils.cpp -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-Less/sscanf/HEAD/utils.h --------------------------------------------------------------------------------