manページ検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 715 for IF (0.033 sec.)
Man page of OPEN 4350
OPEN Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page 名前 open, op ... CE 説明 The open () system call opens the file specified by pathname . If the specified file does not ex ... ist, it may optionally (if O_CREAT is specified in flags ) be created by open ... atus flags can be retrieved and (in some cases) modified; see fcntl (2) for details. すべてのファイル作成 ... le offset is positioned at the end of the file, as if with lseek (2). The modification of the file offse ...
https://man.plustar.jp/manpage/man2/openat.2.html - [similar]
Man page of MALLOC 4350
MALLOC Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 malloc ... o the allocated memory. The memory is set to zero. If nmemb or size is 0, then calloc () returns either ... that can later be successfully passed to free (). If the multiplication of nmemb and size would result ... the case where the multiplication would overflow. If such an overflow occurs, reallocarray () returns N ... is suitably aligned for any built-in type, or NULL if the request failed. The returned pointer may be th ...
https://man.plustar.jp/manpage/man3/calloc.3.html - [similar]
Man page of MALLOC 4350
MALLOC Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 malloc ... o the allocated memory. The memory is set to zero. If nmemb or size is 0, then calloc () returns either ... that can later be successfully passed to free (). If the multiplication of nmemb and size would result ... the case where the multiplication would overflow. If such an overflow occurs, reallocarray () returns N ... is suitably aligned for any built-in type, or NULL if the request failed. The returned pointer may be th ...
https://man.plustar.jp/manpage/man3/free.3.html - [similar]
Man page of GETPROTOENT_R 4350
GETPROTOENT_R Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 ... t_buf; struct protoent *result; char buf[MAX_BUF]; if (argc < 2) { printf("Usage: %s proto-name [buflen] ... n", argv[0]); exit(EXIT_FAILURE); } buflen = 1024; if (argc > 2) buflen = atoi(argv[2]); if (buflen > MA ... ame_r(argv[1], &result_buf, buf, buflen, &result); if (s == ERANGE) { if (erange_cnt == 0) printf("ERANG ... exactly what size buffer was required */ buflen++; if (buflen > MAX_BUF) { printf("Exceeded buffer limit ...
https://man.plustar.jp/manpage/man3/getprotobyname_r.3.html - [similar]
Man page of GETPROTOENT_R 4350
GETPROTOENT_R Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 ... t_buf; struct protoent *result; char buf[MAX_BUF]; if (argc < 2) { printf("Usage: %s proto-name [buflen] ... n", argv[0]); exit(EXIT_FAILURE); } buflen = 1024; if (argc > 2) buflen = atoi(argv[2]); if (buflen > MA ... ame_r(argv[1], &result_buf, buf, buflen, &result); if (s == ERANGE) { if (erange_cnt == 0) printf("ERANG ... exactly what size buffer was required */ buflen++; if (buflen > MAX_BUF) { printf("Exceeded buffer limit ...
https://man.plustar.jp/manpage/man3/getprotobynumber_r.3.html - [similar]
Man page of GETPROTOENT_R 4350
GETPROTOENT_R Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 ... t_buf; struct protoent *result; char buf[MAX_BUF]; if (argc < 2) { printf("Usage: %s proto-name [buflen] ... n", argv[0]); exit(EXIT_FAILURE); } buflen = 1024; if (argc > 2) buflen = atoi(argv[2]); if (buflen > MA ... ame_r(argv[1], &result_buf, buf, buflen, &result); if (s == ERANGE) { if (erange_cnt == 0) printf("ERANG ... exactly what size buffer was required */ buflen++; if (buflen > MAX_BUF) { printf("Exceeded buffer limit ...
https://man.plustar.jp/manpage/man3/getprotoent_r.3.html - [similar]
Man page of MALLOC 4350
MALLOC Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 malloc ... o the allocated memory. The memory is set to zero. If nmemb or size is 0, then calloc () returns either ... that can later be successfully passed to free (). If the multiplication of nmemb and size would result ... the case where the multiplication would overflow. If such an overflow occurs, reallocarray () returns N ... is suitably aligned for any built-in type, or NULL if the request failed. The returned pointer may be th ...
https://man.plustar.jp/manpage/man3/malloc.3.html - [similar]
Man page of MALLOC 4350
MALLOC Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 malloc ... o the allocated memory. The memory is set to zero. If nmemb or size is 0, then calloc () returns either ... that can later be successfully passed to free (). If the multiplication of nmemb and size would result ... the case where the multiplication would overflow. If such an overflow occurs, reallocarray () returns N ... is suitably aligned for any built-in type, or NULL if the request failed. The returned pointer may be th ...
https://man.plustar.jp/manpage/man3/realloc.3.html - [similar]
Man page of MALLOC 4350
MALLOC Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 malloc ... o the allocated memory. The memory is set to zero. If nmemb or size is 0, then calloc () returns either ... that can later be successfully passed to free (). If the multiplication of nmemb and size would result ... the case where the multiplication would overflow. If such an overflow occurs, reallocarray () returns N ... is suitably aligned for any built-in type, or NULL if the request failed. The returned pointer may be th ...
https://man.plustar.jp/manpage/man3/reallocarray.3.html - [similar]
Man page of TEE 4308
TEE Section: Linux Programmer's Manual (2) Updated: 2020-06-09 Index JM Home Page 名前 tee - パイ ... 実装される可能性がある。 splice (2) 参照。 SPLICE_F_GIFT tee () では未使用。 vmsplice (2) 参照。 返り値 成 ... を設定する。 エラー EAGAIN SPLICE_F_NONBLOCK was specified in flags or one of the file descriptors had bee ... n(int argc, char *argv[]) { int fd; int len, slen; if (argc != 2) { fprintf(stderr, "Usage: %s <file>\n" ... open(argv[1], O_WRONLY | O_CREAT | O_TRUNC, 0644); if (fd == -1) { perror("open"); exit(EXIT_FAILURE); } ...
https://man.plustar.jp/manpage/man2/tee.2.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT

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