X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=Kconfig.stdlibs;h=5c0c05374bdc22a18c59d7c1743094ac5b260ed8;hb=2cb41f7db5b9f89113432d6b3daff4807ba8e5f2;hp=09e082a25887e8d1e7943c8bf901519c25d5d594;hpb=d711597b8c58d3d06b860462bf965e59dd4f3452;p=palacios.git diff --git a/Kconfig.stdlibs b/Kconfig.stdlibs index 09e082a..5c0c053 100644 --- a/Kconfig.stdlibs +++ b/Kconfig.stdlibs @@ -109,7 +109,7 @@ config BUILT_IN_STRNCPY config BUILT_IN_STRDUP bool "strdup()" - default n + default y depends on BUILT_IN_STDLIB help This enables Palacios' internal implementation of strdup @@ -128,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 @@ -149,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"