• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* -*-C-*-
2 ################################################################################
3 #
4 # File:         listio.h
5 # Description:  List I/O processing procedures.
6 # Author:       Mark Seaman, Software Productivity
7 # Created:      Thu Jul 23 13:24:09 1987
8 # Modified:     Mon Oct 16 11:38:52 1989 (Mark Seaman) marks@hpgrlt
9 # Language:     C
10 # Package:      N/A
11 # Status:       Reusable Software Component
12 #
13 # (c) Copyright 1987, Hewlett-Packard Company.
14 ** Licensed under the Apache License, Version 2.0 (the "License");
15 ** you may not use this file except in compliance with the License.
16 ** You may obtain a copy of the License at
17 ** http://www.apache.org/licenses/LICENSE-2.0
18 ** Unless required by applicable law or agreed to in writing, software
19 ** distributed under the License is distributed on an "AS IS" BASIS,
20 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 ** See the License for the specific language governing permissions and
22 ** limitations under the License.
23 #
24 ################################################################################
25  * Revision 1.5  89/06/27  11:56:00  11:56:00  marks (Mark Seaman)
26  * Fixed MAC_OR_DOS bug
27  *
28 
29   This file contains the interface definitions to a set of general purpose
30   list I/O routines.
31 
32 ***********************************************************************/
33 #ifndef LISTIO_H
34 #define LISTIO_H
35 
36 #include <stdio.h>
37 #include "oldlist.h"
38 
39 /*----------------------------------------------------------------------------
40         Public Funtion Prototypes
41 --------------------------------------------------------------------------*/
42 LIST read_list(const char *filename);
43 #endif
44