nuttx-apps/testing/libc/wcstombs/Kconfig
Tiago Medicci f139e56cd6 testing/libc/wcstombs: Add testing application for wcstombs
This application test the libc's `wcstombs` function for different
len sizes (bigger than the converted string, exactly the size of
it and smaller than it).
2025-02-06 23:41:31 +01:00

30 lines
639 B
Text

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config TESTING_WCSTOMBS
tristate "wcstombs() test"
default n
depends on LIBC_LOCALE
---help---
Enable wcstombs() test
if TESTING_WCSTOMBS
config TESTING_WCSTOMBS_PROGNAME
string "Program name"
default "wcstombs"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config TESTING_WCSTOMBS_PRIORITY
int "wcstombs task priority"
default 100
config TESTING_WCSTOMBS_STACKSIZE
int "wcstombs stack size"
default DEFAULT_TASK_STACKSIZE
endif