Serenity Operating System
1/*
2 * Copyright (c) 2021, the SerenityOS developers.
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#include <AK/Format.h>
8#include <assert.h>
9#include <glob.h>
10
11extern "C" {
12
13// https://pubs.opengroup.org/onlinepubs/9699919799/functions/glob.html
14int glob(char const*, int, int (*)(char const* epath, int eerrno), glob_t*)
15{
16 dbgln("FIXME: Implement glob()");
17 TODO();
18}
19
20void globfree(glob_t*)
21{
22 dbgln("FIXME: Implement globfree()");
23 TODO();
24}
25}