1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
.\" Copyright (C) 2006 Justin Pryzby <pryzbyj@justinpryzby.com>
.\"
.\" Permission is hereby granted, free of charge, to any person obtaining
.\" a copy of this software and associated documentation files (the
.\" "Software"), to deal in the Software without restriction, including
.\" without limitation the rights to use, copy, modify, merge, publish,
.\" distribute, sublicense, and/or sell copies of the Software, and to
.\" permit persons to whom the Software is furnished to do so, subject to
.\" the following conditions:
.\"
.\" The above copyright notice and this permission notice shall be
.\" included in all copies or substantial portions of the Software.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
.\" EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
.\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
.\" IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
.\" CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
.\" TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
.\" SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
.\"
.\" References:
.\" glibc manual and source
.\"
.\" 2006-05-19, mtk, various edits and example program
.\"
.\" Japanese Version Copyright (c) 2006 Akihiro MOTOKI all rights reserved.
.\" Translated 2006-07-31, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
.\"
.TH RPMATCH 3 2007-07-26 "GNU" "Linux Programmer's Manual"
.SH ̾
rpmatch \- ؤα꤫꤫Ƚꤹ
.SH
.nf
.B #include <stdlib.h>
.BI "int rpmatch(const char *" response );
.fi
.sp
.in -4n
glibc εǽޥ
.RB ( feature_test_macros (7)
):
.in
.sp
.BR rpmatch ():
_SVID_SOURCE
.SH
.BR rpmatch ()
yes/no μФ桼α롣
ݲ (I18N) бƤ롣
.I response
ˤϥ桼αǼ NULL üʸäƤɬפ롣
Ƥϡ
.BR fgets (3)
.BR getline (3)
ǼΤǤ
ץब
.BR setlocale (3)
ƤӽФƴĶѿѹͭˤ硢
Ķѿ \fBLANG\fP, \fBLC_MESSAGES\fP, \fBLC_ALL\fP
桼θȤƹθ롣
˴ؤ餺\fB^[Yy]\fP ˥ޥåϾ˹Ȳᤵ졢
\fB^[Nn]\fP ˥ޥåϾȲᤵ롣
.SH ֤
.I response
塢
.BR rpmatch ()
Ūʱ ("no") ǧ 0 ֤
Ūʱ ("yes") ǧ 1 ֤
.I response
ͤǤʤä \-1 ֤
.SH 顼
֤ \-1 ֤ä硢ϤǤä¾β餫Υ顼
äȤ̣롣֤ͤ 0 ʳɤǧǤ
ʬǤϤʤ
.BR rpmatch ()
ϡ
.BR regcomp (3)
.BR regexec (3)
ԤͳΤɤ줫ǼԤ뤳Ȥ롣
顼θ
.I errno
¾βΤ뤳ȤϤǤʤ
.I errno
ɽμԤθƤ
(âΥ
.I response
ͤǧǤ˼Ԥ̤뤳ȤϤǤʤ)
.SH
.BR rpmatch ()
ϤɤɸǤɬܤȤʤäƤʤ
Linux ʳˤѤǤ륷ƥ⤤Ĥ¸ߤ롣
.\" ʤȤ AIX 5.1 FreeBSD 6.0 ǤѤǤ롣
.SH Х
.BR rpmatch ()
μ
.I response
κǽ 1 ʸƤ褦Ǥ롣η̡
"nyes" 0 ֤
"ynever; not in a million years" 1 ֤Ȥˤʤ롣
ʸäȸ̩˲ᤷ褤
㤨С
.RB ( regex (7)
ƤĥɽȤä)
.BR ^([yY]|yes|YES)$ " " ^([nN]|no|NO)$
Dz᤹ʤɡ
.SH
ʲΥץϡޥɥ饤
ꤵ줿ʸ
.BR rpmatch ()
Ϥη̤ɽ롣
.nf
#define _SVID_SOURCE
#include <locale.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
int
main(int argc, char *argv[])
{
if (argc != 2 || strcmp(argv[1], "\-\-help") == 0) {
fprintf(stderr, "%s response\\n", argv[0]);
exit(EXIT_FAILURE);
}
setlocale(LC_ALL, "");
printf("rpmatch() returns: %d\\n", rpmatch(argv[1]));
exit(EXIT_SUCCESS);
}
.fi
.SH Ϣ
.BR fgets (3),
.BR getline (3),
.BR nl_langinfo (3),
.BR regcomp (3),
.BR setlocale (3)
|