26 lines
1.1 KiB
OCaml
26 lines
1.1 KiB
OCaml
(***********************************************************************)
|
|
(* *)
|
|
(* Objective Caml *)
|
|
(* *)
|
|
(* Valerie Menissier-Morain, projet Cristal, INRIA Rocquencourt *)
|
|
(* *)
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
(* under the terms of the GNU Library General Public License, with *)
|
|
(* the special exception on linking described in file ../../LICENSE. *)
|
|
(* *)
|
|
(***********************************************************************)
|
|
|
|
(* $Id$ *)
|
|
|
|
(* Some extra operations on integers *)
|
|
|
|
val gcd_int: int -> int -> int
|
|
val num_bits_int: int -> int
|
|
val compare_int: int -> int -> int
|
|
val sign_int: int -> int
|
|
val length_of_int: int
|
|
val biggest_int: int
|
|
val least_int: int
|
|
val monster_int: int
|