提交 25279526 编写于 作者: W walter harms 提交者: Linus Torvalds

[PATCH] documentation for strncpy()

this clarifies the documentation on the behavier of strncpy().
Signed-off-by: NDomen Puncer <domen@coderock.org>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 ebe8b541
...@@ -86,6 +86,10 @@ EXPORT_SYMBOL(strcpy); ...@@ -86,6 +86,10 @@ EXPORT_SYMBOL(strcpy);
* *
* The result is not %NUL-terminated if the source exceeds * The result is not %NUL-terminated if the source exceeds
* @count bytes. * @count bytes.
*
* In the case where the length of @src is less than that of
* count, the remainder of @dest will be padded with %NUL.
*
*/ */
char * strncpy(char * dest,const char *src,size_t count) char * strncpy(char * dest,const char *src,size_t count)
{ {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册