14 lines
291 B
C
14 lines
291 B
C
/*************
|
|
* Header file for inpcom.c
|
|
* 1999 E. Rouat
|
|
************/
|
|
|
|
#ifndef INPCOM_H_INCLUDED
|
|
#define INPCOM_H_INCLUDED
|
|
|
|
FILE * inp_pathopen(char *name, char *mode);
|
|
void inp_readall(FILE *fp, struct line **data, int, char *dirname);
|
|
void inp_casefix(register char *string);
|
|
|
|
#endif
|