manページ検索

phrase: max: clip:
target: order:
Results of 131 - 140 of about 635 for NAME (0.054 sec.)
Man page of GETADDRINFO_A 4084
GETADDRINFO_A Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 ... 構造体で規定される。 struct gaicb { const char *ar_name; const char *ar_service; const struct addrinfo *ar ... ddrinfo (3) の引数に対応している。 したがって、 ar_name はインターネットホストを示す node 引数に、 ar_serv ... rnel.org : 128.30.2.36 enoent.linuxfoundation.org: Name or service not known gnu.cz: 87.236.197.13 プログラ ... memset(reqs[i], 0, sizeof(*reqs[0])); reqs[i]->ar_name = argv[i + 1]; } ret = getaddrinfo_a(GAI_WAIT, req ...
https://man.plustar.jp/manpage/man3/getaddrinfo_a.3.html - [similar]
Man page of COREUTILS 4055
COREUTILS Section: ユーザーコマンド (1) Updated: 2021年5月 Index JM Home Page 名前 coreutils - c ... バイナリー 書式 coreutils ,--coreutils-prog=PROGRAM_NAME / [ ,PARAMETERS/ ]... 説明 組み込みプログラム PROG ... RAM_NAME を指定されたパラメーター PARAMETERS で実行する。 - ... 表示するには 'coreutils --coreutils-prog = ,PROGRAM_NAME/ --help ' を使用すること。 GNU coreutils のオンライ ... 連キーワード COREUTILS , プログラム , 作者 , 表示 , NAME , info , www , PARAMETERS , version , 終了 Linux マ ...
https://man.plustar.jp/manpage/man1/coreutils.1.html - [similar]
Man page of PUTENV 4019
PUTENV Section: Linux Programmer's Manual (3) Updated: 2019-03-06 Index JM Home Page 名前 putenv ... 環境変数の追加または値の変更を行う。 引数 string は name = value という形式を取る。 name が環境に存在しない ... 場合は string が環境に追加される。 name が環境に存在する場合は name の値は value に変更され ... If string does not include an equal sign: putenv("NAME"); then the named variable is removed from the cal ...
https://man.plustar.jp/manpage/man3/putenv.3.html - [similar]
Man page of SEM_UNLINK 4019
SEM_UNLINK Section: Linux Programmer's Manual (3) Updated: 2020-08-13 Index JM Home Page 名前 se ... nclude < semaphore.h > int sem_unlink(const char * name ); -pthread とリンクする。 説明 sem_unlink () は、 ... name で参照される名前付きセマフォを削除する。 セマフォの ... 呼び出し元にはこのセマフォを削除する許可がない。 ENAMETOOLONG name が長すぎる。 ENOENT 指定された名前 nam ...
https://man.plustar.jp/manpage/man3/sem_unlink.3.html - [similar]
Man page of RESOLV.CONF 4019
RESOLV.CONF Section: Linux Programmer's Manual (5) Updated: 2020-08-13 Index JM Home Page 名前 r ... library that provide access to the Internet Domain Name System (DNS). The resolver configuration file cont ... for details. If this file does not exist, only the name server on the local machine will be queried, and t ... he search list contains the local domain name determined from the hostname. この状態を変更するた ... めの設定オプションには、以下のようなものがある。 nameserver ネームサーバの IP アドレス レゾルバが問い合わ ...
https://man.plustar.jp/manpage/man5/resolv.conf.5.html - [similar]
Man page of ld 3990
ld Section: GNU Development Tools (1) Updated: 17 August 1992 Index JM Home Page 名前 ld - GNU リ ... -embedded-relocs ] [ -E ] [ -export-dynamic ] [ -f name ] [ --auxiliary name ] [ -F name ] [ --filter name ... ] [ -format input-format ] [ -g ] [ -G size ] [ -h name ] [ -soname name ] [ --help ] [ -i ] [ -l ar ] [ - ... arn-mismatch ] [ -oformat output-format ] [ -R filename ] [ -relax ] [ -r | -Ur ] [ -rpath directory ] [ - ... オプションは dlopen を使う場合などに必要となる。 -f name --auxiliary name ELF 共有オブジェクトを作成する際に ...
https://man.plustar.jp/manpage/man1/ld.1.html - [similar]
Man page of GETCWD 3990
GETCWD Section: Linux Programmer's Manual (3) Updated: 2018-04-30 Index JM Home Page 名前 getcwd ... , getwd, get_current_dir_name - カレントワーキングディレクトリ名の取得 書式 #inc ... ); char *getwd(char * buf ); char *get_current_dir_name(void); glibc 向けの機能検査マクロの要件 ( feature_ ... test_macros (7) 参照): get_current_dir_name (): _GNU_SOURCE getwd (): glibc 2.12 以降: (_XOPEN ... トワーキングディレクトリの 絶対パス名 (absolute pathname) が入った文字列を返す。 返される文字列はヌルで終端 ...
https://man.plustar.jp/manpage/man2/getcwd.2.html - [similar]
Man page of MQ_UNLINK 3990
MQ_UNLINK Section: Linux Programmer's Manual (3) Updated: 2020-08-13 Index JM Home Page 名前 mq_ ... 式 #include < mqueue.h > int mq_unlink(const char * name ); -lrt でリンクする。 説明 mq_unlink () は指定され ... たメッセージキュー name を削除する。 メッセージキュー名は直ちに削除される。 ... ッセージキューを削除 (unlink) する 許可を持たない。 ENAMETOOLONG name が長過ぎる。 ENOENT 指定された名前 nam ...
https://man.plustar.jp/manpage/man2/mq_unlink.2.html - [similar]
Man page of BSEARCH 3990
BSEARCH Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 bsear ... > #include < string.h > struct mi { int nr; char *name; } months[] = { { 1, "jan" }, { 2, "feb" }, { 3, " ... m1; const struct mi *mi2 = m2; return strcmp(mi1->name, mi2->name); } int main(int argc, char **argv) { q ... < argc; i++) { struct mi key; struct mi *res; key.name = argv[i]; res = bsearch(&key, months, nr_of_month ... \n", argv[i]); else printf("%s: month #%d\n", res->name, res->nr); } exit(EXIT_SUCCESS); } 関連項目 hsearc ...
https://man.plustar.jp/manpage/man3/bsearch.3.html - [similar]
Man page of GETCWD 3990
GETCWD Section: Linux Programmer's Manual (3) Updated: 2018-04-30 Index JM Home Page 名前 getcwd ... , getwd, get_current_dir_name - カレントワーキングディレクトリ名の取得 書式 #inc ... ); char *getwd(char * buf ); char *get_current_dir_name(void); glibc 向けの機能検査マクロの要件 ( feature_ ... test_macros (7) 参照): get_current_dir_name (): _GNU_SOURCE getwd (): glibc 2.12 以降: (_XOPEN ... トワーキングディレクトリの 絶対パス名 (absolute pathname) が入った文字列を返す。 返される文字列はヌルで終端 ...
https://man.plustar.jp/manpage/man3/get_current_dir_name.3.html - [similar]
PREV 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 NEXT

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