mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
f3490f9327
These functions are required by Qt but since we don't really need them for just basic apps, let's leave the implementation for later.
31 lines
614 B
C
31 lines
614 B
C
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdio.h>
|
|
#include <sys/cdefs.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
#define MOUNTED "/etc/mtab"
|
|
#define MNTTAB "/etc/fstab"
|
|
|
|
struct mntent {
|
|
char* mnt_fsname;
|
|
char* mnt_dir;
|
|
char* mnt_type;
|
|
char* mnt_opts;
|
|
int mnt_freq;
|
|
int mnt_passno;
|
|
};
|
|
|
|
struct mntent* getmntent(FILE* stream);
|
|
FILE* setmntent(char const* filename, char const* type);
|
|
int endmntent(FILE* streamp);
|
|
struct mntent* getmntent_r(FILE* streamp, struct mntent* mntbuf, char* buf, int buflen);
|
|
|
|
__END_DECLS
|