OSDN Git Service

(split) Convert release and draft pages to UTF-8.
[linuxjm/LDP_man-pages.git] / draft / man3 / rewinddir.3
1 .\" Copyright (C) 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 18:29:11 1993 by Rik Faith (faith@cs.unc.edu)
28 .\" Modified 11 June 1995 by Andries Brouwer (aeb@cwi.nl)
29 .\"
30 .\" Japanese Version Copyright (c) 1997 HIROFUMI Nishizuka
31 .\"     all rights reserved.
32 .\" Translated Wed Dec 24 12:34:00 JST 1997
33 .\"     by HIROFUMI Nishizuka <nishi@rpts.cl.nec.co.jp>
34 .\"
35 .TH REWINDDIR 3 1995-06-11 "" "Linux Programmer's Manual"
36 .\"O .SH NAME
37 .SH 名前
38 .\"O rewinddir \- reset directory stream
39 rewinddir \- ディレクトリストリームの初期化
40 .\"O .SH SYNOPSIS
41 .SH 書式
42 .nf
43 .B #include <sys/types.h>
44 .sp
45 .B #include <dirent.h>
46 .sp
47 .BI "void rewinddir(DIR *" dirp );
48 .fi
49 .\"O .SH DESCRIPTION
50 .SH 説明
51 .\"O The
52 .\"O .BR rewinddir ()
53 .\"O function resets the position of the directory
54 .\"O stream \fIdirp\fP to the beginning of the directory.
55 .BR rewinddir ()
56 関数は、ディレクトリストリーム \fIdirp\fP の位置を
57 ディレクトリの先頭に初期化する。
58 .\"O .SH "RETURN VALUE"
59 .SH 返り値
60 .\"O The
61 .\"O .BR rewinddir ()
62 .\"O function returns no value.
63 .BR rewinddir ()
64 関数は、値を返さない。
65 .\"O .SH "CONFORMING TO"
66 .SH 準拠
67 SVr4, 4.3BSD, POSIX.1-2001.
68 .\"O .SH "SEE ALSO"
69 .SH 関連項目
70 .BR closedir (3),
71 .BR opendir (3),
72 .BR readdir (3),
73 .BR scandir (3),
74 .BR seekdir (3),
75 .BR telldir (3)