├── LICENSE.txt ├── README.md ├── package.lisp ├── tests.lisp ├── tests ├── empty-file ├── one-byte-file └── two-byte-file ├── trivial-file-size.asd └── trivial-file-size.lisp /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/trivial-file-size/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/trivial-file-size/HEAD/README.md -------------------------------------------------------------------------------- /package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/trivial-file-size/HEAD/package.lisp -------------------------------------------------------------------------------- /tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/trivial-file-size/HEAD/tests.lisp -------------------------------------------------------------------------------- /tests/empty-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/one-byte-file: -------------------------------------------------------------------------------- 1 | x -------------------------------------------------------------------------------- /tests/two-byte-file: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /trivial-file-size.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/trivial-file-size/HEAD/trivial-file-size.asd -------------------------------------------------------------------------------- /trivial-file-size.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/trivial-file-size/HEAD/trivial-file-size.lisp --------------------------------------------------------------------------------