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

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4.  
  5. #include "lib.h"
  6.  
  7. int        (**SystemFunc)();
  8.  
  9. extern    Function    Functions[] ;
  10.  
  11. Library    lib = {
  12.     "Matrix Class Library",
  13.     Functions,
  14.     1, 0, 0,
  15.     "",
  16.     0,
  17. };
  18.  
  19. extern    void    _LibraryInit( Library* );
  20.  
  21. Library    *start( libary )
  22. Library    **libary ;
  23. {
  24.     _LibraryInit( libary[1] );
  25.  
  26.     return &lib ;
  27. }
  28.  
  29.