-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.h
33 lines (26 loc) · 823 Bytes
/
input.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef INPUT_H
#define INPUT_H
#include <stdio.h>
#include "ugm_typedefs.h"
#ifdef INPUT_MODULE
/* stuff visable only to the input module */
char input_h_sccs_id[] = "@(#)input.h 1.230 12/4/00";
#endif
/* #defines visable to any module including this header file*/
void
inp_read_grow_log(char* filename,
stats_data_t* data,
int num_rows,
int num_cols);
void inp_slurp(char* filename,
void* ptr,
int count);
void
inp_read_restart_file (int* diffusion,
int* breed,
int* spread,
int* slope_resistance,
int* road_gravity,
long *random_seed,
int *counter);
#endif