forked from github/server
14 lines
180 B
C
14 lines
180 B
C
#ifndef UTIL_FILEREADER_H
|
|
#define UTIL_FILEREADER_H
|
|
|
|
#include <stdio.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
const char *getbuf(FILE *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|