home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / program / misc / mas / mashelp / masi.def < prev    next >
Encoding:
Modula Definition  |  1989-10-07  |  257 b   |  18 lines

  1.  
  2. (* MAS Integer Definition Module. *)
  3.  
  4. DEFINITION MODULE MASI;
  5.  
  6.  
  7. FROM MASSTOR IMPORT LIST;
  8.  
  9.  
  10. PROCEDURE IPROD(A,B: LIST): LIST; 
  11. (*Integer product.  A and B are integers.  C=A*B. For long
  12. integers Karatsubas method is used. *)
  13.  
  14.  
  15. END MASI.
  16.  
  17.  
  18.