X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=blobdiff_plain;f=Kconfig.stdlibs;h=5c0c05374bdc22a18c59d7c1743094ac5b260ed8;hp=4fa33158819b3ac07c51c918b675d7f57f0a1d0d;hb=8cd246c3830733c2850cef049a7ad153daf0dd13;hpb=d54fc24e6cfb62cc2fedfb63d3ae68ff636e3a01 diff --git a/Kconfig.stdlibs b/Kconfig.stdlibs index 4fa3315..5c0c053 100644 --- a/Kconfig.stdlibs +++ b/Kconfig.stdlibs @@ -109,6 +109,7 @@ config BUILT_IN_STRNCPY config BUILT_IN_STRDUP bool "strdup()" + default y depends on BUILT_IN_STDLIB help This enables Palacios' internal implementation of strdup @@ -127,6 +128,12 @@ config BUILT_IN_ATOI help This enables Palacios' internal implementation of atoi +config BUILT_IN_ATOX + bool "atox()" + depends on BUILT_IN_STDLIB + help + This enables Palacios' internal implementation of atox + config BUILT_IN_STRCHR bool "strchr()" default n @@ -148,6 +155,34 @@ config BUILT_IN_STRPBRK help This enables Palacios' internal implementation of strpbrk +config BUILT_IN_STR_TOLOWER + bool "str_tolower()" + default n + depends on BUILT_IN_STDLIB + help + This enables Palacios' internal implementation of str_tolower + +config BUILT_IN_STR_TOUPPER + bool "str_toupper()" + default n + depends on BUILT_IN_STDLIB + help + This enables Palacios' internal implementation of str_toupper + +config BUILT_IN_STRTOI + bool "strtoi()" + default n + depends on BUILT_IN_STDLIB + help + This enables Palacios' internal implementation of strtoi + +config BUILT_IN_STRTOX + bool "strtox()" + default n + depends on BUILT_IN_STDLIB + help + This enables Palacios' internal implementation of strtox + config BUILT_IN_STDIO bool "Enable Built in versions of stdio functions"