home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / turbopas / parstp25.zip / PARSLIB.PAS < prev    next >
Pascal/Delphi Source File  |  1994-02-14  |  655b  |  18 lines

  1. (******************************************************************************
  2. *                                 parsLib.pas                                 *
  3. *                                                                             *
  4. * ABorland Pascal interface unit to the Parser DLL                            *
  5. *                                                                             *
  6. ******************************************************************************)
  7. unit parsLib;
  8. {$S-}
  9. interface
  10.  
  11. function GetExpr(s : PChar; var valid : Boolean) : double;
  12.  
  13. implementation
  14.  
  15. function GetExpr; external 'PARSER' index 1;
  16.  
  17. end.
  18.