home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume33 / problem / part01 / lister.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-19  |  1.3 KB  |  36 lines

  1. /*
  2. ** lister.h - the public interface to lister.C
  3. **
  4. ** lister.h 1.3   Delta'd: 15:51:02 9/22/92   Mike Lijewski, CNSF
  5. **
  6. ** Copyright (c) 1991, 1992 Cornell University
  7. ** All rights reserved.
  8. **
  9. ** Redistribution and use in source and binary forms are permitted
  10. ** provided that: (1) source distributions retain this entire copyright
  11. ** notice and comment, and (2) distributions including binaries display
  12. ** the following acknowledgement:  ``This product includes software
  13. ** developed by Cornell University'' in the documentation or other
  14. ** materials provided with the distribution and in all advertising
  15. ** materials mentioning features or use of this software. Neither the
  16. ** name of the University nor the names of its contributors may be used
  17. ** to endorse or promote products derived from this software without
  18. ** specific prior written permission.
  19. **
  20. ** THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  21. ** IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  22. ** WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  23. */
  24.  
  25. #ifndef __LISTER_H
  26. #define __LISTER_H
  27.  
  28. // interface to the lister
  29. extern void initialize_lister(DList *dl);
  30. extern void lister_cmd_loop(DList *dl);
  31.  
  32. // goal_column - mostly a no-op now
  33. inline int goal_column(const DList*) { return 0; }
  34.  
  35. #endif
  36.