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
|
.\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
.\"
.\" Japanese Version Copyright (c) 1997 HIROFUMI Nishizuka
.\" all rights reserved.
.\" Translated Tue Dec 16 10:03:40 JST 1997
.\" by HIROFUMI Nishizuka <nishi@rpts.cl.nec.co.jp>
.\" Updated & Modified Sun Mar 24 00:35:13 JST 2002
.\" by Yuichi SATO <ysato@h4.dion.ne.jp>
.\" Updated & Modified Thu Nov 27 01:28:24 JST 2003
.\" by Yuichi SATO <ysato444@yahoo.co.jp>
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one.
.\"
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date. The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein. The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\"
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.\" Modified Mon Apr 12 12:49:57 1993, David Metcalfe
.\" Modified Sat Jul 24 18:56:22 1993, Rik Faith (faith@cs.unc.edu)
.\" Modified Wed Feb 20 21:09:36 2002, Ian Redfern (redferni@logica.com)
.\"
.TH MEMCHR 3 2003-11-01 "" "Linux Programmer's Manual"
.SH ̾
memchr, memrchr \- ʸõ˥
.SH
.nf
.B #include <string.h>
.sp
.BI "void *memchr(const void *" s ", int " c ", size_t " n );
.sp
.BI "void *memrchr(const void *" s ", int " c ", size_t " n );
.fi
.SH
.BR memchr ()
ؿϡݥ \fIs\fP ؤ֥å
Ƭ \fIn\fP ХȤʸ \fIc\fP õ
ǽ \fIc\fP (unsigned char Ȳᤵ) Ĥäưߤ롣
.PP
.BR memrchr ()
ؿ
.BR memchr ()
ؿ˻Ƥ뤬
ƬõΤǤϤʤ
ݥ \fIs\fP ؤ \fIn\fP ХȤΥ֥å
ոõ
.SH ֤
.BR memchr ()
ؿ
.BR memrchr ()
ؿϰפʸؤΥݥ֤
⤷ʸΰ˸ʤ NULL ֤
.SH
.BR memchr ()
ؿ SVr4, 4.3BSD, C89, C99, POSIX.1-2001 ˽롣
.BR memrchr ()
ؿ GNU ĥǤꡢglibc 2.1.91 ѲǽǤ롣
.SH Ϣ
.BR index (3),
.BR rindex (3),
.BR strchr (3),
.BR strpbrk (3),
.BR strrchr (3),
.BR strsep (3),
.BR strspn (3),
.BR strstr (3),
.BR wmemchr (3)
|