
Int32 is a 32-bit integers library for Objective Caml.


INSTALLATION
============

Once the tar file is extracted, do:

1. Compile the library:

	make all
	
   (Only `make byte' if your platform does not support native code)

3. Install it:

	make install

   (Only `make install-byte' if your platform does not support native code)

   It will be installed in the O'Caml standard library. 
   If you want to install it elsewhere, edit the first line of the Makefile.


USE
===

To use with the bytecode compiler:

	ocamlc -custom [other options] int32.cma [other files] -cclib -lint32

To use with the native code compiler:

	ocamlopt [other options] int32.cmxa [other files] -cclib -lint32

For interactive use, do:
	
	ocamlmktop -custom -o mytop int32.cma -cclib -lint32


DOCUMENTATION
=============

The interface file int32.mli is quickly documented, but all the functions
have self explanatory names.
