summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/fnmatch.cpp
blob: b0d47cfb407cf1766f2421b31b195ba4d038840d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Copyright (c) 2021, the SerenityOS developers.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <AK/Format.h>
#include <fnmatch.h>

int fnmatch(char const*, char const*, int)
{
    dbgln("FIXME: Implement fnmatch()");
    return 0;
}