/* %Z%%M% %I% %E% */

/*
 * Copyright (c) 1990, 1991, 1995 by Wayne C. Gramlich.
 * All rights reserved.
 *
 * Permission to use, copy, modify, distribute, and sell this software
 * for any purpose is hereby granted without fee provided that the above
 * copyright notice and this permission are retained.  The author makes
 * no representations about the suitability of this software for any purpose.
 * It is provided "as is" without express or implied warranty.
 */

/* File routine exported interfaces: */

#ifndef FILE_EXPORTS_H
#define FILE_EXPORTS_H

#ifndef FILE_TYPES_H
#include "file_types.h"
#endif

#ifndef HEAP_TYPES_H
#include "heap_types.h"
#endif

#ifndef STR_TYPES_H
#include "str_types.h"
#endif

extern void	file_close(File);
extern Str	file_argument_read(File, File_argument *, Heap);
extern int	file_chr_actual_read(File);
extern int	file_chr_non_white_peek(File);
extern int	file_chr_peek(File);
extern int	file_chr_read(File);
extern int	file_chr_read_peek(File);
extern int	file_integer_read(File, File_integer *);
extern Str	file_name_get(File);
extern File	file_open(Str, int, Heap);
extern int	file_seek(File, long);
extern File	file_standard_input_open(Heap);
extern Str	file_string_read(File, File_string *, Heap);
extern Str	file_symbol_read(File, File_symbol *, Heap);
extern long	file_tell(File);
extern File	file_xopen(Str, int);

#endif /* FILE_EXPORTS_H */
