forked from ElektraInitiative/libelektra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfstab.h
More file actions
33 lines (26 loc) · 658 Bytes
/
Copy pathfstab.h
File metadata and controls
33 lines (26 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
* @file
*
* @brief
*
* @copyright BSD License (see LICENSE.md or https://www.libelektra.org)
*/
#ifndef FSTAB_H
#define FSTAB_H
// without that the backend does not work at all
// so it will be checked and backend will be disabled
// if mntent is not available
#include <mntent.h>
#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <kdberrors.h>
#include <kdbextension.h>
#include <kdbplugin.h>
int elektraFstabGet (Plugin * handle, KeySet * returned, Key * parentKey);
int elektraFstabSet (Plugin * handle, KeySet * ks, Key * parentKey);
#endif