home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d0xx / d034 / btree.lha / Btree / btree.fe.c < prev    next >
Encoding:
C/C++ Source or Header  |  1986-09-03  |  878 b   |  47 lines

  1. /********************************************************************
  2. *********************************************************************
  3.  
  4. Module Name:        btree.fe.c
  5. ============
  6.  
  7. Function:        Front end for btree code ...
  8. =========        
  9.  
  10. Description:
  11. ============
  12.     Implements a front-end program for the btree code
  13.  
  14.     Libraries:
  15.         stdio.h
  16.         btree.fe.h
  17.         btree.c    (-> btree.h)
  18.         bree.prt.h
  19.  
  20. ****************************************************************************
  21. ****************************************************************************/
  22.  
  23. static char btreefrontendc[] = "@(#)btree.fe.c    1.1 7/16/86";
  24.  
  25. #include "btree.c"
  26. #include "btree.fe.h"
  27. #include "btree.prt.h"
  28.  
  29.  
  30. /*
  31. ** MAIN PROGRAM
  32. ** ============
  33. **
  34. ** Purpose:    Front panel type thing for btree code - allows interactive
  35. **        manipulation of tree
  36. **
  37. ** Parameters:    none
  38. **
  39. ** Returns:    none
  40. **
  41. */
  42.  
  43. main()
  44. {
  45.     frontend();
  46. }
  47.