server/src/util/filereader.h
2019-09-13 21:35:44 +02:00

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