home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / VPR_DATA / DOGA / SOURCES / POLYEDIT.LZH / ML / MAIN.C < prev    next >
C/C++ Source or Header  |  1995-03-21  |  461b  |  34 lines

  1. /*
  2.  *        行列演算関数群
  3.  *
  4.  *        Copyright T.Kobayashi
  5.  */
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8. #include <string.h>
  9.  
  10. #include "lib.h"
  11.  
  12. int        (**SystemFunc)();
  13.  
  14. extern    Function    Functions[] ;
  15.  
  16. Library    lib = {
  17.     "Macro Language Library",
  18.     Functions,
  19.     2, 0, 2,
  20.     "",
  21.     0,
  22. };
  23.  
  24. extern    void    _LibraryInit( Library* );
  25. extern    void    SearchFunction() ;
  26.  
  27. Library    *start( libary )
  28. Library    **libary ;
  29. {
  30.     _LibraryInit( libary[1] );
  31.     return &lib ;
  32. }
  33.  
  34.