home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of Mecomp Multimedia 2
/
MECOMP-CD-II.iso
/
amiga
/
tools
/
libs
/
bignum
/
examples
/
src
/
info.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1997-02-11
|
298 b
|
16 lines
#define __USE_SYSBASE
#include <proto/exec.h>
#include <proto/BigNum.h>
__saveds int maine(void)
{
struct ExecBase *SysBase;
struct Library *BigNumBase;
SysBase=*((struct ExecBase **)4);
if(BigNumBase=OpenLibrary("BigNum.library",37))
BigNumInfo();
CloseLibrary(BigNumBase);
return(0);
}