Added Function field.

This commit is contained in:
Joel Sherrill
1998-03-16 17:08:52 +00:00
parent 53d804ff91
commit 34683feee2
15 changed files with 344 additions and 344 deletions

View File

@@ -15,11 +15,11 @@
@subsection Directory Operations
@example
opendir()
readdir()
readdir_r()
rewinddir()
closedir()
opendir(), Function
readdir(), Function
readdir_r(), Function
rewinddir(), Function
closedir(), Function
@end example
@section Working Directory
@@ -27,13 +27,13 @@ closedir()
@subsection Change Current Working Directory
@example
chdir()
chdir(), Function
@end example
@subsection Get Working Directory Pathname
@example
getcwd()
getcwd(), Function
@end example
@section General File Creation
@@ -41,25 +41,25 @@ getcwd()
@subsection Open a File
@example
open()
open(), Function
@end example
@subsection Create a New File or Rewrite an Existing One
@example
creat()
creat(), Function
@end example
@subsection Set File Creation Mask
@example
umask()
umask(), Function
@end example
@subsection Link to a File
@example
link()
link(), Function
@end example
@section Special File Creation
@@ -67,13 +67,13 @@ link()
@subsection Make a Directory
@example
mkdir()
mkdir(), Function
@end example
@subsection Make a FIFO Special File
@example
mkfifo()
mkfifo(), Function
@end example
@section File Removal
@@ -81,19 +81,19 @@ mkfifo()
@subsection Remove Directory Entries
@example
unlink()
unlink(), Function
@end example
@subsection Remove a Directory
@example
rmdir()
rmdir(), Function
@end example
@subsection Rename a File
@example
rename()
rename(), Function
@end example
@section File Characteristics
@@ -103,46 +103,46 @@ rename()
@subsection Get File Status
@example
stat()
fstat()
stat(), Function
fstat(), Function
@end example
@subsection Check File Accessibility
@example
access()
access(), Function
@end example
@subsection Change File Modes
@example
chmod()
fchmod()
chmod(), Function
fchmod(), Function
@end example
@subsection Change Owner and Group of a File
@example
chown()
chown(), Function
@end example
@subsection Set File Access and Modification Times
@example
utime()
utime(), Function
@end example
@subsection Truncate a File to a Specified Length
@example
ftruncate()
ftruncate(), Function
@end example
@section Configurable Pathname Variable
@example
pathconf()
fpathconf()
pathconf(), Function
fpathconf(), Function
@end example
@subsection Get Configurable Pathname Variables