Set loglevel and use fsck_cmdline_parser_ext().
[osl.git] / fd.h
1 /*
2  * Copyright (C) 2006-2008 Andre Noll <maan@systemlinux.org>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file fd.h exported symbols from fd.c */
8
9 int osl_open(const char *path, int flags, mode_t mode);
10 int para_opendir(const char *dirname, DIR **dir, int *cwd);
11 int para_fchdir(int fd);
12 int mmap_full_file(const char *filename, int open_mode, void **map,
13         size_t *size, int *fd_ptr);
14 int osl_munmap(void *start, size_t length);
15 int write_all(int fd, const char *buf, size_t *len);
16 int write_file(const char *filename, const void *buf, size_t size);
17
18 /**
19  * A wrapper for mkdir(2).
20  *
21  * \param path Name of the directory to create.
22  * \param mode The permissions to use.
23  *
24  * \return Standard.
25  */
26 static inline int osl_mkdir(const char *path, mode_t mode)
27 {
28         if (!mkdir(path, mode))
29                 return 1;
30         return -ERRNO_TO_ERROR(errno);
31 }
32
33 /**
34  * A wrapper for rename(2).
35  *
36  * \param old_path The source path.
37  * \param new_path The destination path.
38  *
39  * \return Standard.
40  *
41  * \sa rename(2).
42  */
43 _static_inline_ int osl_rename(const char *old_path, const char *new_path)
44 {
45         if (rename(old_path, new_path) < 0)
46                 return -ERRNO_TO_ERROR(errno);
47         return 1;
48 }