rust/src/test/run-pass/c-stack-returning-int64.rs

34 lines
937 B
Rust
Raw Normal View History

// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.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 mod std;
2011-10-24 19:03:18 -05:00
#[abi = "cdecl"]
#[nolink]
extern mod libc {
#[legacy_exports];
fn atol(x: *u8) -> int;
fn atoll(x: *u8) -> i64;
2011-10-24 19:03:18 -05:00
}
fn atol(s: ~str) -> int {
2012-08-01 19:30:05 -05:00
return str::as_buf(s, { |x, _len| libc::atol(x) });
2011-10-24 19:03:18 -05:00
}
fn atoll(s: ~str) -> i64 {
2012-08-01 19:30:05 -05:00
return str::as_buf(s, { |x, _len| libc::atoll(x) });
2011-10-24 19:03:18 -05:00
}
fn main() {
assert atol(~"1024") * 10 == atol(~"10240");
assert (atoll(~"11111111111111111") * 10i64)
== atoll(~"111111111111111110");
2011-10-24 19:03:18 -05:00
}