manページ検索

phrase: max: clip:
target: order:
Results of 161 - 170 of about 349 for buf (0.140 sec.)
Man page of CMSG 4223
CMSG Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 CMSG_ALI ... pointer to the first cmsghdr in the ancillary data buffer associated with the passed msghdr . It returns ... L if there isn't enough space for a cmsghdr in the buffer. * CMSG_NXTHDR () は、渡した cmsghdr の次にくる ... な空きが無い場合、NULL を返す。 When initializing a buffer that will contain a series of cmsghdr structure ... s (e.g., to be sent with sendmsg (2)), that buffer should first be zero-initialized to ensure the ...
https://man.plustar.jp/manpage/man3/CMSG_SPACE.3.html - [similar]
Man page of CMSG 4223
CMSG Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 CMSG_ALI ... pointer to the first cmsghdr in the ancillary data buffer associated with the passed msghdr . It returns ... L if there isn't enough space for a cmsghdr in the buffer. * CMSG_NXTHDR () は、渡した cmsghdr の次にくる ... な空きが無い場合、NULL を返す。 When initializing a buffer that will contain a series of cmsghdr structure ... s (e.g., to be sent with sendmsg (2)), that buffer should first be zero-initialized to ensure the ...
https://man.plustar.jp/manpage/man3/cmsg.3.html - [similar]
Man page of INET_NET_PTON 4223
INET_NET_PTON Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 ... while (0) int main(int argc, char *argv[]) { char buf[100]; struct in_addr addr; int bits; if (argc < 2) ... 変換する */ if (inet_net_ntop(AF_INET, &addr, bits, buf, sizeof(buf)) == NULL) errExit("inet_net_ntop"); p ... rintf("inet_net_ntop() yielded: %s\n", buf); /* 'addr' を名前の形で (ネットワークバイトオーダ ...
https://man.plustar.jp/manpage/man3/inet_net_ntop.3.html - [similar]
Man page of INET_NET_PTON 4223
INET_NET_PTON Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 ... while (0) int main(int argc, char *argv[]) { char buf[100]; struct in_addr addr; int bits; if (argc < 2) ... 変換する */ if (inet_net_ntop(AF_INET, &addr, bits, buf, sizeof(buf)) == NULL) errExit("inet_net_ntop"); p ... rintf("inet_net_ntop() yielded: %s\n", buf); /* 'addr' を名前の形で (ネットワークバイトオーダ ...
https://man.plustar.jp/manpage/man3/inet_net_pton.3.html - [similar]
Man page of INET_PTON 4223
INET_PTON Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 ine ... > int main(int argc, char *argv[]) { unsigned char buf[sizeof(struct in6_addr)]; int domain, s; char str[ ... T6 : atoi(argv[1]); s = inet_pton(domain, argv[2], buf); if (s <= 0) { if (s == 0) fprintf(stderr, "Not i ... ton"); exit(EXIT_FAILURE); } if (inet_ntop(domain, buf, str, INET6_ADDRSTRLEN) == NULL) { perror("inet_nt ...
https://man.plustar.jp/manpage/man3/inet_pton.3.html - [similar]
Man page of SYSLOG 4223
SYSLOG Section: Linux Programmer's Manual (2) Updated: 2020-08-13 Index JM Home Page 名前 syslog ... vel の設定を行う 書式 int syslog(int type , char * bufp , int len ); /* glibc ではラッパー関数は提供されて ... clude < sys/klog.h > int klogctl(int type , char * bufp , int len ); 説明 注意 : おそらく、あなたが探して ... と呼ばれている。 カーネルログバッファー (kernel log buffer) カーネルは長さ LOG_BUF_LEN の巡回式のバッファー ... ルにかかわらず) 格納される。 初期のカーネルでは LOG_BUF_LEN の値は 4096 であった。 カーネル 1.3.54 からは ...
https://man.plustar.jp/manpage/man3/klogctl.3.html - [similar]
Man page of STRCPY 4223
STRCPY Section: Linux Programmer's Manual (3) Updated: 2019-03-06 Index JM Home Page 名前 strcpy ... py () は dest に終端されていない文字列を生成する。 buf の長さが buflen の場合、以下のようにして強制的に終 ... 端することができる。 if (buflen > 0) { strncpy(buf, str, buflen - 1); buf[bufle ... (もちろん、上記の方法では、 src に入っている情報が buflen - 1 バイトよりも多い場合には、 dest へのコピー時 ... , strcpy , コピー , バイト , STRCPY , ヌルバイト , buflen Linux マニュアル 一覧 [ man1 ] [ man2 ] [ man3 ...
https://man.plustar.jp/manpage/man3/strcpy.3.html - [similar]
Man page of STRCPY 4223
STRCPY Section: Linux Programmer's Manual (3) Updated: 2019-03-06 Index JM Home Page 名前 strcpy ... py () は dest に終端されていない文字列を生成する。 buf の長さが buflen の場合、以下のようにして強制的に終 ... 端することができる。 if (buflen > 0) { strncpy(buf, str, buflen - 1); buf[bufle ... (もちろん、上記の方法では、 src に入っている情報が buflen - 1 バイトよりも多い場合には、 dest へのコピー時 ... , strcpy , コピー , バイト , STRCPY , ヌルバイト , buflen Linux マニュアル 一覧 [ man1 ] [ man2 ] [ man3 ...
https://man.plustar.jp/manpage/man3/strncpy.3.html - [similar]
Man page of STRPTIME 4223
STRPTIME Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 strp ... ude < time.h > int main(void) { struct tm tm; char buf[255]; memset(&tm, 0, sizeof(tm)); strptime("2001-1 ... -12 18:31:01", "%Y-%m-%d %H:%M:%S", &tm); strftime(buf, sizeof(buf), "%d %b %Y %H:%M", &tm); puts(buf); e ...
https://man.plustar.jp/manpage/man3/strptime.3.html - [similar]
Man page of TTYNAME 4223
TTYNAME Section: Linux Programmer's Manual (3) Updated: 2019-10-10 Index JM Home Page 名前 ttyna ... r *ttyname(int fd ); int ttyname_r(int fd , char * buf , size_t buflen ); 説明 ttyname () 関数は、ファイル ... 可能性がある。 ttyname_r () 関数は、このパス名を長さ buflen のバッファー buf に格納する。 返り値 ttyname () ... 末デバイスを参照していない。 ERANGE ( ttyname_r ()) buflen がパス名を格納するには短すぎる。 属性 この節で使 ...
https://man.plustar.jp/manpage/man3/ttyname.3.html - [similar]
PREV 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 NEXT

This document was created by man2html, using the manual pages.
Time: 13:30:26 GMT, January 09, 2022