source: MondoRescue/branches/stable/mondo/src/include/mr_file.h@ 1100

Last change on this file since 1100 was 1100, checked in by Bruno Cornec, 17 years ago

Addition of mr_mkdir in library and usage in main for MONDO_CACHE creation

  • Property svn:eol-style set to native
File size: 475 bytes
Line 
1/* mr_file.h
2 *
3 * $Id$
4 *
5 * (c) 2006 Bruno Cornec <bruno@mondorescue.org>
6 *
7 * Header file of mr_file
8 *
9 * Provided under the GPLv2
10 */
11
12#ifndef MR_FILE_H
13#define MR_FILE_H
14
15#include <stdio.h>
16
17/* functions (public methods) */
18
19extern FILE *mr_fopen(const char *path, const char *mode);
20extern FILE *mr_fprintf(FILE *stream, const char *fmt, ...);
21extern void mr_fclose(FILE *fd);
22extern void mr_mkdir(const char *pathname, mode_t mode);
23
24#endif /* MR_FILE_H */
Note: See TracBrowser for help on using the repository browser.