Previously, the POSIX shell utilities were intermixed with the POSIX API implementation. The POSIX shell utilities only depend on the public POSIX API, so it makes sense to keep them in a separate subdirectory. Signed-off-by: Christopher Friedt <cfriedt@meta.com>
10 lines
277 B
Text
10 lines
277 B
Text
# Copyright (c) 2018 Nordic Semiconductor ASA
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config FNMATCH
|
|
bool "Support for fnmatch"
|
|
default y if POSIX_API
|
|
help
|
|
Match filenames using the the fnmatch function. For example, the pattern
|
|
"*.c" matches the filename "hello.c".
|