0.1.0
This commit is contained in:
commit
9e3e657996
8 changed files with 370 additions and 0 deletions
35
README.md
Normal file
35
README.md
Normal file
|
@ -0,0 +1,35 @@
|
|||
# fanotify
|
||||
|
||||
Low-level wrapper over the C API fanotify for D. All values are taken from uapi `<linux/fanotify.h>`.
|
||||
|
||||
## Installation
|
||||
|
||||
Add to `dub.json`:
|
||||
|
||||
```json
|
||||
{
|
||||
"dependencies": {
|
||||
"fanotify": "~>0.1.0"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
Or to `dub.sdl`:
|
||||
|
||||
```
|
||||
dependency "fanotify" version="~>0.1.0"
|
||||
```
|
||||
|
||||
Run `dub build`.
|
||||
|
||||
## Usage
|
||||
|
||||
Import the module: `import fanotify;`
|
||||
|
||||
## Documentation
|
||||
|
||||
- Linux man pages: `fanotify(7)`, `fanotify_init(2)`, `fanotify_mark(2)`.
|
||||
|
||||
## License
|
||||
|
||||
Boost Software License 1.0. See [LICENSE](LICENSE).
|
Loading…
Add table
Add a link
Reference in a new issue