Skip to content

Commit

Permalink
[Lib] u32.rs: created
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoric authored and brson committed Oct 17, 2011
1 parent 27ca86a commit eba88ef
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/lib/std.rc
Expand Up @@ -13,6 +13,7 @@ mod char;
mod int;
mod uint;
mod u8;
mod u32;
mod u64;
mod vec;
mod str;
Expand Down
13 changes: 13 additions & 0 deletions src/lib/u32.rs
@@ -0,0 +1,13 @@
pure fn max_value() -> u32 { ret 4294967296u32; }
pure fn min_value() -> u32 { ret 0u32; }

//
// Local Variables:
// mode: rust
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
// End:
//

0 comments on commit eba88ef

Please sign in to comment.