├── .gitignore ├── .travis.yml ├── Cargo.toml ├── README.md └── src ├── file_lock.c ├── file_options.rs └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | Cargo.lock 2 | myfile.txt 3 | target 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiedotwtf/file-lock/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiedotwtf/file-lock/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiedotwtf/file-lock/HEAD/README.md -------------------------------------------------------------------------------- /src/file_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiedotwtf/file-lock/HEAD/src/file_lock.c -------------------------------------------------------------------------------- /src/file_options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiedotwtf/file-lock/HEAD/src/file_options.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiedotwtf/file-lock/HEAD/src/lib.rs --------------------------------------------------------------------------------