blob: ae241887d51357cd5f6d1e421a9495c2b5f5f80f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- src/open_files.c.orig 2003-03-18 17:48:22 UTC
+++ src/open_files.c
@@ -21,6 +21,10 @@
/* Yee ole includes (I put this all in one file for my sanity) */
#include "include.h"
+FILE *in_file; /* the files we'll be reading for input */
+FILE *in_stat; /* the file we're using to store our place in in_file */
+char *st_filename; /* the var we store the name of the offset file */
+
int open_infile(char *fname) {
/* open our input file read only */
in_file = fopen(fname, "r");
|