diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2000-11-06 15:46:57 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2000-11-06 15:46:57 +0000 |
| commit | a72b09f0aad85ecfddba83ed667c7f9c79f3727b (patch) | |
| tree | ab652fcd27e5200a792a886cb3a4e08dcb225880 /lib/libc/stdlib | |
| parent | 888bb0ddd220c3192578d0c518c606bc0f166612 (diff) | |
Notes
Diffstat (limited to 'lib/libc/stdlib')
| -rw-r--r-- | lib/libc/stdlib/tsearch.3 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/stdlib/tsearch.3 b/lib/libc/stdlib/tsearch.3 index 4dcf658cadca..913714cc29f1 100644 --- a/lib/libc/stdlib/tsearch.3 +++ b/lib/libc/stdlib/tsearch.3 @@ -36,11 +36,11 @@ .Sh SYNOPSIS .Fd #include <search.h> .Ft void * -.Fn tdelete "const void *key" "void **rootp", "int (*compar) (const void *, const void *)" +.Fn tdelete "const void *key" "void **rootp" "int (*compar) (const void *, const void *)" .Ft void * -.Fn tfind "const void *key" "const void **rootp", "int (*compar) (const void *, const void *)" +.Fn tfind "const void *key" "const void **rootp" "int (*compar) (const void *, const void *)" .Ft void * -.Fn tsearch "const void *key", "void **rootp", "int (*compar) (const void *, const void *)" +.Fn tsearch "const void *key", "void **rootp" "int (*compar) (const void *, const void *)" .Ft void .Fn twalk "const void *root" "void (*compar) (const void *, VISIT, int)" .Sh DESCRIPTION @@ -85,7 +85,7 @@ will be adjusted. .Pp .Fn Twalk walks the binary search tree rooted in -.fa root +.Fa root and calls the function .Fa action on each node. |
