Sha256: abdf404bcac8b0fa78b4e82d0e4aead80fd88f8f669be6cc76540357e9e34890
Contents?: true
Size: 743 Bytes
Versions: 1
Compression:
Stored size: 743 Bytes
Contents
// Copyright 2015-2016 Daniel P. Clark & Other Combinatorics Developers // // Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or // http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or // http://opensource.org/licenses/MIT>, at your option. This file may not be // copied, modified, or distributed except according to those terms. extern crate libc; use libc::c_char; use std::ffi::CStr; use std::str; #[no_mangle] pub extern fn absolute(string: *const c_char) -> bool { let c_str = unsafe { assert!(!string.is_null()); CStr::from_ptr(string) }; let r_str = str::from_utf8(c_str.to_bytes()).unwrap(); match r_str.chars().next() { Some('/') => { true }, _ => { false }, } }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
faster_path-0.0.1 | src/lib.rs |