tail head cat sleep
QR code linking to this page

manページ  — STRCAT

名称

strcat – 文字列の連結

内容

ライブラリ

Standard C Library (libc, -lc)

書式

#include <string.h>

char *
strcat(char *s, const char *append);

char *
strncat(char *s, const char *append, size_t count);

解説

strcat() および strncat() 関数は、ヌル文字で終了する文字列 append をヌル文字で終了する文字列 s の終わりに追加し、次に終端の ‘\0’ を追加します。文字列 s は、結果を保持するのに十分なスペースを持っていなければなりません。

strncat() 関数は、 append から count を超えない数の文字を追加し、次に終端の ‘\0’ を追加します。

戻り値

strcat() および strncat() 関数は、ポインタ s を返します。

関連項目

bcopy(3), memccpy(3), memcpy(3), memmove(3), strcpy(3), strlcat(3) [英語], strlcpy(3) [英語]

規格

strcat() および strncat() 関数は、 ISO/IEC 9899:1990 ("ISO C90") 適合しています。

STRCAT (3) June 4, 1993

tail head cat sleep
QR code linking to this page


このマニュアルページサービスについてのご意見は Ben Bullock にお知らせください。 Privacy policy.