Serenity Operating System
at master 14 lines 249 B view raw
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 <fnmatch.h> 9 10int fnmatch(char const*, char const*, int) 11{ 12 dbgln("FIXME: Implement fnmatch()"); 13 return 0; 14}