You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2021/07/29 18:33:12 UTC

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #4247: Redirect _l function to non-locale version

xiaoxiang781216 commented on a change in pull request #4247:
URL: https://github.com/apache/incubator-nuttx/pull/4247#discussion_r679393423



##########
File path: libs/libc/wchar/lib_wcsftime.c
##########
@@ -39,4 +39,10 @@ size_t wcsftime(FAR wchar_t *s, size_t maxsize, FAR const wchar_t *format,
 
   return strftime((FAR char *)s, maxsize, (FAR char *)format, tim_p);
 }
+
+size_t wcsftime_l(FAR wchar_t *s, size_t maxsize, FAR const wchar_t *format,
+                 FAR const struct tm *tim_p, locale_t l)

Review comment:
       Done.

##########
File path: libs/libc/string/lib_strcoll.c
##########
@@ -56,4 +56,9 @@ int strcoll(const char *a, const char *b)
 {
   return strcmp(a, b);
 }
+
+int strcoll_l(const char *a, const char *b, locale_t l)

Review comment:
       Done.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org