diff options
author | David Cuddeback <david.cuddeback@gmail.com> | 2015-10-15 20:49:51 -0700 |
---|---|---|
committer | David Cuddeback <david.cuddeback@gmail.com> | 2015-10-15 20:49:51 -0700 |
commit | f430941a71795c8dc946d3f3cba6e93448bf041e (patch) | |
tree | 983a9576e3abb55616b4164c4070460719e45acf | |
parent | bc33af300e8556692d40ad25eb38adac6d4e82a2 (diff) | |
download | termios-rs-f430941a71795c8dc946d3f3cba6e93448bf041e.zip |
moves documentation link
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,12 +1,12 @@ # Termios Rust Bindings -[Documentation](http://dcuddeback.github.io/termios-rs/termios/) - The `termios` crate provides safe bindings for the Rust programming language to the [terminal I/O interface](http://pubs.opengroup.org/onlinepubs/009695399/basedefs/termios.h.html) implemented by Unix operating systems. The safe bindings are a small wrapper around the raw C functions, which converts integer return values to `std::io::Result` to indicate success or failure. +* [Documentation](http://dcuddeback.github.io/termios-rs/termios/) + ## Dependencies In order to use the `termios` crate, you must have a native `libc` library that implements the termios API. This should be available on any Unix operating system. It has been confirmed to work on |