home *** CD-ROM | disk | FTP | other *** search
- /*
- ** lister.h - the public interface to lister.C
- **
- ** lister.h 1.3 Delta'd: 15:51:02 9/22/92 Mike Lijewski, CNSF
- **
- ** Copyright (c) 1991, 1992 Cornell University
- ** All rights reserved.
- **
- ** Redistribution and use in source and binary forms are permitted
- ** provided that: (1) source distributions retain this entire copyright
- ** notice and comment, and (2) distributions including binaries display
- ** the following acknowledgement: ``This product includes software
- ** developed by Cornell University'' in the documentation or other
- ** materials provided with the distribution and in all advertising
- ** materials mentioning features or use of this software. Neither the
- ** name of the University nor the names of its contributors may be used
- ** to endorse or promote products derived from this software without
- ** specific prior written permission.
- **
- ** THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
- ** IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
- ** WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
- */
-
- #ifndef __LISTER_H
- #define __LISTER_H
-
- // interface to the lister
- extern void initialize_lister(DList *dl);
- extern void lister_cmd_loop(DList *dl);
-
- // goal_column - mostly a no-op now
- inline int goal_column(const DList*) { return 0; }
-
- #endif
-