blob: 84f88c819ee99c1cc5b18f391fdca7946a24fc33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Copyright (c) 1987, 1989 University of Maryland
* Department of Computer Science. All rights reserved.
* Permission to copy for any purpose is hereby granted
* so long as this copyright notice remains intact.
*/
/*
* Declarations for seek.c: SeekFile(FILE *f) returns a
* version of `f' on which `fseek' functions properly;
* CopyFile(FILE *f) returns a temporary copy of f.
*/
#ifdef WIN32
#undef CopyFile
#endif
FILE *SeekFile(FILE *f), *CopyFile(FILE *f);
|