same-file 0.1.1

A simple crate for determining whether two file paths point to the same file.
Documentation
1
2
3
4
5
6
7
extern crate same_file;

use same_file::is_same_file;

fn main() {
    assert!(is_same_file("/bin/sh", "/usr/bin/sh").unwrap());
}