├── .clang-format ├── .envrc ├── .github ├── FUNDING.yaml └── workflows │ └── build.yaml ├── .gitignore ├── CMakeLists.txt ├── flake.lock ├── flake.nix ├── license ├── main.c ├── module.nix ├── noshell.h.in ├── package.nix ├── readme.md └── shell.nix /.clang-format: -------------------------------------------------------------------------------- 1 | PointerAlignment: Left 2 | -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/noshell/HEAD/.envrc -------------------------------------------------------------------------------- /.github/FUNDING.yaml: -------------------------------------------------------------------------------- 1 | github: [viperML] 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/noshell/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/noshell/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/noshell/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/noshell/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/noshell/HEAD/flake.nix -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/noshell/HEAD/license -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/noshell/HEAD/main.c -------------------------------------------------------------------------------- /module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/noshell/HEAD/module.nix -------------------------------------------------------------------------------- /noshell.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/noshell/HEAD/noshell.h.in -------------------------------------------------------------------------------- /package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/noshell/HEAD/package.nix -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/noshell/HEAD/readme.md -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/noshell/HEAD/shell.nix --------------------------------------------------------------------------------