OSDN Git Service

(split) Move Japanese translation histories after original history sections.
[linuxjm/LDP_man-pages.git] / draft / man3 / strspn.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" Permission is granted to make and distribute verbatim copies of this
4 .\" manual provided the copyright notice and this permission notice are
5 .\" preserved on all copies.
6 .\"
7 .\" Permission is granted to copy and distribute modified versions of this
8 .\" manual under the conditions for verbatim copying, provided that the
9 .\" entire resulting derived work is distributed under the terms of a
10 .\" permission notice identical to this one.
11 .\"
12 .\" Since the Linux kernel and libraries are constantly changing, this
13 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
14 .\" responsibility for errors or omissions, or for damages resulting from
15 .\" the use of the information contained herein.  The author(s) may not
16 .\" have taken the same level of care in the production of this manual,
17 .\" which is licensed free of charge, as they might when working
18 .\" professionally.
19 .\"
20 .\" Formatted or processed versions of this manual, if unaccompanied by
21 .\" the source, must acknowledge the copyright and authors of this work.
22 .\"
23 .\" References consulted:
24 .\"     Linux libc source code
25 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
26 .\"     386BSD man pages
27 .\" Modified Sat Jul 24 17:57:50 1993 by Rik Faith (faith@cs.unc.edu)
28 .\"
29 .\" Japanese Version Copyright (c) 1997 HIROFUMI Nishizuka
30 .\"     all rights reserved.
31 .\" Translated Tue Dec 16 10:04:31 JST 1997
32 .\"     by HIROFUMI Nishizuka <nishi@rpts.cl.nec.co.jp>
33 .\"
34 .TH STRSPN 3 2010-09-20 "" "Linux Programmer's Manual"
35 .SH Ì¾Á°
36 strspn, strcspn \- Ê¸»úÎ󤫤éʸ»ú¤Î¥»¥Ã¥È¤òõ¤¹
37 .SH ½ñ¼°
38 .nf
39 .B #include <string.h>
40 .sp
41 .BI "size_t strspn(const char *" s ", const char *" accept );
42 .sp
43 .BI "size_t strcspn(const char *" s ", const char *" reject );
44 .fi
45 .SH ÀâÌÀ
46 .BR strspn ()
47 ´Ø¿ô¤Ï¡¢\fIaccept\fP ¤Ë´Þ¤Þ¤ì¤ëʸ»ú¤À¤±¤Ç¹½À®¤µ¤ì¤ëʸ»úÎó
48 ¤ò \fIs\fP ¤«¤éõ¤·¡¢¤½¤ÎºÇ½é¤ÎÉôʬ¤ÎŤµ¤ò·×»»¤¹¤ë¡£
49 .PP
50 .BR strcspn ()
51 ´Ø¿ô¤Ï¡¢\fIreject\fP ¤Ë´Þ¤Þ¤ì¤Ê¤¤Ê¸»ú¤À¤±¤Ç¹½À®¤µ¤ì¤ëʸ»úÎó
52 ¤ò \fIs\fP ¤«¤éõ¤·¡¢¤½¤ÎºÇ½é¤ÎÉôʬ¤ÎŤµ¤ò·×»»¤¹¤ë¡£
53 .SH ÊÖ¤êÃÍ
54 .BR strspn ()
55 ´Ø¿ô¤Ï¡¢\fIaccept\fP ¤«¤é¤Îʸ»ú¤À¤±¤Ç¹½À®¤µ¤ì¤ë \fIs\fP ¤Î
56 ºÇ½é¤ÎÉôʬ¤Îʸ»ú¤Î¿ô¤òÊÖ¤¹¡£
57 .PP
58 .BR strcspn ()
59 ´Ø¿ô¤Ï¡¢\fIs\fP ¤ÎºÇ½é¤ÎÉôʬ¤Ç¡¢Ê¸»úÎó \fIreject\fP ¤Ë
60 ´Þ¤Þ¤ì¤Ê¤¤Ê¸»ú¤Î¿ô¤òÊÖ¤¹¡£
61 .SH ½àµò
62 SVr4, 4.3BSD, C89, C99.
63 .SH ´ØÏ¢¹àÌÜ
64 .BR index (3),
65 .BR memchr (3),
66 .BR rindex (3),
67 .BR strchr (3),
68 .BR string (3),
69 .BR strpbrk (3),
70 .BR strsep (3),
71 .BR strstr (3),
72 .BR strtok (3),
73 .BR wcscspn (3),
74 .BR wcsspn (3)