summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/glob.cpp
blob: 690f26fc7616a24502927965815d8adca97bcc41 (plain)
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
/*
 * Copyright (c) 2021, the SerenityOS developers.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <AK/Format.h>
#include <assert.h>
#include <glob.h>

extern "C" {

// https://pubs.opengroup.org/onlinepubs/9699919799/functions/glob.html
int glob(char const*, int, int (*)(char const* epath, int eerrno), glob_t*)
{
    dbgln("FIXME: Implement glob()");
    TODO();
}

void globfree(glob_t*)
{
    dbgln("FIXME: Implement globfree()");
    TODO();
}
}