mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 11:57:35 +00:00
LibC: Add stub for fnmatch and a set of defined values
This adds a stub for fnmatch and the following defined values: - FNM_PATHNAME - FNM_NOESCAPE - FNM_PERIOD - FNM_FILE_NAME - FNM_LEADING_DIR - FNM_CASEFOLD - FNM_EXTMATCH
This commit is contained in:
parent
8d19d8861a
commit
8abfcb976d
3 changed files with 38 additions and 0 deletions
|
@ -7,6 +7,7 @@ set(LIBC_SOURCES
|
||||||
dlfcn.cpp
|
dlfcn.cpp
|
||||||
fcntl.cpp
|
fcntl.cpp
|
||||||
fenv.cpp
|
fenv.cpp
|
||||||
|
fnmatch.cpp
|
||||||
getopt.cpp
|
getopt.cpp
|
||||||
grp.cpp
|
grp.cpp
|
||||||
inttypes.cpp
|
inttypes.cpp
|
||||||
|
|
14
Userland/Libraries/LibC/fnmatch.cpp
Normal file
14
Userland/Libraries/LibC/fnmatch.cpp
Normal file
|
@ -0,0 +1,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;
|
||||||
|
}
|
23
Userland/Libraries/LibC/fnmatch.h
Normal file
23
Userland/Libraries/LibC/fnmatch.h
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2021, the SerenityOS developers
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||||||
|
*/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
#define FNM_PATHNAME 1
|
||||||
|
#define FNM_NOESCAPE 2
|
||||||
|
#define FNM_PERIOD 4
|
||||||
|
#define FNM_FILE_NAME FNM_PATHNAME
|
||||||
|
#define FNM_LEADING_DIR 8
|
||||||
|
#define FNM_CASEFOLD 16
|
||||||
|
#define FNM_EXTMATCH 32
|
||||||
|
|
||||||
|
__BEGIN_DECLS
|
||||||
|
|
||||||
|
int fnmatch(char const* pattern, char const* string, int flags);
|
||||||
|
|
||||||
|
__END_DECLS
|
Loading…
Add table
Add a link
Reference in a new issue