summaryrefslogtreecommitdiff
path: root/Build/source/texk/seetexk/seek.h
blob: a8c898db851daaa6d5df0a15ec57c0c57e827faa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * 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 *fp) returns a
 * version of `fp' on which `fseek' functions properly;
 * CopyFile(FILE *fp) returns a temporary copy of fp.
 */
#ifdef WIN32
#undef CopyFile
FILE *SeekFile(FILE *fp), *CopyFile(FILE *fp);
#else
FILE *SeekFile(/* FILE *fp */), *CopyFile(/* FILE *fp */);
#endif