/* mr_file.h
 *
 * $Id$
 *
 * (c) 2006 Bruno Cornec <bruno@mondorescue.org>
 *   
 * Header file of mr_file
 *
 * Provided under the GPLv2
 */

#ifndef MR_FILE_H
#define MR_FILE_H

#include <stdio.h>

/* functions (public methods) */

extern FILE *mr_fopen(const char *path, const char *mode);
extern FILE *mr_fprintf(FILE *stream, const char *fmt, ...);
extern void mr_fclose(FILE *fd);
extern void mr_mkdir(const char *pathname, mode_t mode);

#endif							/* MR_FILE_H */
