2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
|
2021-01-17 08:22:20 +01:00
|
|
|
#include <AK/Format.h>
|
2018-11-07 10:23:16 +01:00
|
|
|
#include <assert.h>
|
2019-06-07 11:49:03 +02:00
|
|
|
#include <mntent.h>
|
2018-11-07 10:23:16 +01:00
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
2018-11-09 10:09:46 +01:00
|
|
|
struct mntent* getmntent(FILE*)
|
2018-11-07 10:23:16 +01:00
|
|
|
{
|
2021-01-17 08:22:20 +01:00
|
|
|
dbgln("FIXME: Implement getmntent()");
|
2018-11-07 10:23:16 +01:00
|
|
|
return nullptr;
|
|
|
|
|
}
|
2021-08-12 19:38:30 +02:00
|
|
|
|
|
|
|
|
FILE* setmntent(char const*, char const*)
|
|
|
|
|
{
|
|
|
|
|
dbgln("FIXME: Implement setmntent()");
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int endmntent(FILE*)
|
|
|
|
|
{
|
|
|
|
|
dbgln("FIXME: Implement endmntent()");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct mntent* getmntent_r(FILE*, struct mntent*, char*, int)
|
|
|
|
|
{
|
|
|
|
|
dbgln("FIXME: Implement getmntent_r()");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2018-11-07 10:23:16 +01:00
|
|
|
}
|