/* mr_file.h * * $Id$ * * (c) 2006 Bruno Cornec * * Header file of mr_file * * Provided under the GPLv2 */ #ifndef MR_FILE_H #define MR_FILE_H #include /* functions (public methods) */ extern FILE *mr_fopen(const char *path, const char *mode); extern FILE *mr_fprintf(FILE *stream, const char *fmt, ...); extern void fclose(FILE *fd); #endif /* MR_FILE_H */