mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
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).
30 lines
639 B
Text
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
|