1
#ifndef PHYSFS_FGETS_H
2
#define PHYSFS_FGETS_H
3
4
#ifdef __cplusplus
5
extern "C" {
6
#endif
7
8
#include "physfs.h"
9
10
char * PHYSFS_fgets(char * str, int size, PHYSFS_file * f);
11
12
13
14
}
15
16
17