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/11/26 09:57:10 UTC

[GitHub] [incubator-nuttx] anchao commented on a change in pull request #4893: libc/str:add strlcat to libc

anchao commented on a change in pull request #4893:
URL: https://github.com/apache/incubator-nuttx/pull/4893#discussion_r757368506



##########
File path: include/string.h
##########
@@ -63,6 +63,7 @@ int        strerror_r(int, FAR char *, size_t);
 size_t     strlen(FAR const char *);
 size_t     strnlen(FAR const char *, size_t);
 FAR char  *strcat(FAR char *, FAR const char *);
+size_t     strlcat(FAR char *dst, FAR const char *src, size_t dsize);

Review comment:
       remove the parameter name just follow the original style




-- 
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