├── .gitignore ├── LICENSE ├── README.md ├── package.lisp ├── safe-read.asd ├── safe-read.lisp └── test.lisp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoe/safe-read/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoe/safe-read/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoe/safe-read/HEAD/README.md -------------------------------------------------------------------------------- /package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoe/safe-read/HEAD/package.lisp -------------------------------------------------------------------------------- /safe-read.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoe/safe-read/HEAD/safe-read.asd -------------------------------------------------------------------------------- /safe-read.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoe/safe-read/HEAD/safe-read.lisp -------------------------------------------------------------------------------- /test.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoe/safe-read/HEAD/test.lisp --------------------------------------------------------------------------------