blob: 7542f9749c70ccef4e5aed10c3c821e03b4becb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* wrappers for "at" functions.
*
* Copyright (C) 2010 Karel Zak <kzak@redhat.com>
*
* This file may be redistributed under the terms of the
* GNU Lesser General Public License.
*/
#ifndef UTIL_LINUX_AT_H
#define UTIL_LINUX_AT_H
#include <stdio.h>
extern int fstat_at(int dir, const char *dirname,
const char *filename, struct stat *st, int nofollow);
extern int open_at(int dir, const char *dirname,
const char *filename, int flags);
extern FILE *fopen_at(int dir, const char *dirname, const char *filename,
int flags, const char *mode);
#endif /* UTIL_LINUX_AT_H */
|