home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / telix / tlx3sort.zip / TLXSORT.H < prev    next >
C/C++ Source or Header  |  1988-07-13  |  963b  |  29 lines

  1. /**
  2.  *
  3.  *  Module:       tlxsort.h
  4.  *  Version:      2.0
  5.  *  Description:  function prototype for TlxSort
  6.  *  Author:       Paul Roub
  7.  *
  8.  *  Revision History:
  9.  *     7-13-88 : created
  10.  *
  11.  *      This program and its sources are Copyright (C) 1988 by Paul Roub
  12.  *      and may not be sold for profit without the express written
  13.  *      consent of the author.  Redistribute them (in their entirety) as
  14.  *      you wish,  provided no fee is charged and all materials are
  15.  *      present and unmodified.
  16.  *
  17. **/
  18.  
  19. /*<f>*/
  20. extern  void      ReadFonFile ( char *name, 
  21.                                 fon_header **header_p, 
  22.                                 fon_entry **entry_p 
  23.                               );
  24. extern  void      *mmalloc    ( size_t size );
  25. extern  void      quitf       ( char *fmt, ... );
  26. extern  FILE      *ffopen     ( char *name, char *mode );
  27. extern  void      WriteFonFile( char *name, fon_header *th, fon_entry *te);
  28.  
  29.