summaryrefslogblamecommitdiffstats
path: root/include/at.h
blob: 7542f9749c70ccef4e5aed10c3c821e03b4becb2 (plain) (tree)






















                                                                             
/*
 * 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 */