diff options
author | phantom <phantom@FreeBSD.org> | 1999-10-30 15:12:25 +0000 |
---|---|---|
committer | phantom <phantom@FreeBSD.org> | 1999-10-30 15:12:25 +0000 |
commit | a17fafc521c9321396f4621e7a95409970d577e4 (patch) | |
tree | 4d72917afe8751c7a9e46178ec42c6071e9c9d87 /lib/libc | |
parent | 945a25b48913c2f1a8b8f0aadcb902c3189ed927 (diff) | |
download | FreeBSD-src-a17fafc521c9321396f4621e7a95409970d577e4.zip FreeBSD-src-a17fafc521c9321396f4621e7a95409970d577e4.tar.gz |
mdoc(7)'fy
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/arc4random.3 | 4 | ||||
-rw-r--r-- | lib/libc/gen/fnmatch.3 | 14 | ||||
-rw-r--r-- | lib/libc/gen/fts.3 | 12 |
3 files changed, 21 insertions, 9 deletions
diff --git a/lib/libc/gen/arc4random.3 b/lib/libc/gen/arc4random.3 index d6844b4..334bb7b 100644 --- a/lib/libc/gen/arc4random.3 +++ b/lib/libc/gen/arc4random.3 @@ -34,8 +34,8 @@ .Dt ARC4RANDOM 3 .Os .Sh NAME -.Nm arc4random, -.Nm arc4random_stir, +.Nm arc4random , +.Nm arc4random_stir , .Nm arc4random_addrandom .Nd arc4 random number generator. .Sh SYNOPSIS diff --git a/lib/libc/gen/fnmatch.3 b/lib/libc/gen/fnmatch.3 index 1231c75..8b556b5 100644 --- a/lib/libc/gen/fnmatch.3 +++ b/lib/libc/gen/fnmatch.3 @@ -92,14 +92,20 @@ must be explicitly matched by periods in .Fa pattern . If this flag is not set, then leading periods are treated as regular characters. -The definition of ``leading'' is related to the specification of -.Dv FNM_PATHNAME. -A period is always ``leading'' if it is the first character in +The definition of +.Dq leading +is related to the specification of +.Dv FNM_PATHNAME . +A period is always +.Dq leading +if it is the first character in .Ar string . Additionally, if .Dv FNM_PATHNAME is set, -a period is ``leading'' if it immediately follows a slash. +a period is +leading +if it immediately follows a slash. .It Dv FNM_LEADING_DIR Ignore .Nm /* diff --git a/lib/libc/gen/fts.3 b/lib/libc/gen/fts.3 index 6eacb38..5ffaf9e 100644 --- a/lib/libc/gen/fts.3 +++ b/lib/libc/gen/fts.3 @@ -60,7 +60,9 @@ functions are provided for traversing file hierarchies. A simple overview is that the .Fn fts_open -function returns a ``handle'' on a file hierarchy, which is then supplied to +function returns a +.Dq handle +on a file hierarchy, which is then supplied to the other .Nm fts functions. @@ -76,7 +78,9 @@ In general, directories are visited two distinguishable times; in pre-order (before any of their descendants are visited) and in post-order (after all of their descendants have been visited). Files are visited once. -It is possible to walk the hierarchy ``logically'' (ignoring symbolic links) +It is possible to walk the hierarchy +.Dq logically +(ignoring symbolic links) or physically (visiting symbolic links), order the walk of the hierarchy or prune and/or re-visit portions of the hierarchy. .Pp @@ -93,7 +97,9 @@ Normally, an .Fa FTSENT structure is returned for every file in the file hierarchy. -In this manual page, ``file'' and +In this manual page, +.Dq file +and .Dq Fa FTSENT No structure are generally interchangeable. |