diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index fe9110565cb..6fffb5cdfda 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -8,7 +8,7 @@
Last Updated: October 26, 2010
+Last Updated: October 27, 2010
nuttx-5.13 2010-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> + * lib/lib_strnlen.c -- Added POSIX 2008 strnlen() function. Contributed + by Michael Hrabanek. + pascal-2.1 2010-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> buildroot-1.9 2010-xx-xxdiff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index 7666a29dfd7..a750a04a2f6 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -2664,8 +2664,9 @@ build diff --git a/Documentation/NuttxUserGuide.html b/Documentation/NuttxUserGuide.html index 024e0392de2..53bdad919d1 100644 --- a/Documentation/NuttxUserGuide.html +++ b/Documentation/NuttxUserGuide.html @@ -6410,6 +6410,7 @@ char *strchr(const char *s, int c); FAR char *strdup(const char *s); const char *strerror(int); size_t strlen(const char *); +size_t strnlen(const char *, size_t); char *strcat(char *, const char *); char *strncat(char *, const char *, size_t); int strcmp(const char *, const char *);
CONFIG_ARCH_MEMCPY,CONFIG_ARCH_MEMCMP,CONFIG_ARCH_MEMMOVE,CONFIG_ARCH_MEMSET,CONFIG_ARCH_STRCMP,CONFIG_ARCH_STRCPY, -CONFIG_ARCH_STRNCPY,CONFIG_ARCH_STRLEN,CONFIG_ARCH_BZERO, -CONFIG_ARCH_KMALLOC,CONFIG_ARCH_KZMALLOC,ONFIG_ARCH_KFREE, +CONFIG_ARCH_STRNCPY,CONFIG_ARCH_STRLEN,CONFIG_ARCH_STRNLEN, +CONFIG_ARCH_BZERO,CONFIG_ARCH_KMALLOC,CONFIG_ARCH_KZMALLOC, +ONFIG_ARCH_KFREE,