Correctly document the order of arguments

to archive_read_open and archive_write_open.

Thanks to: Antony Dovgal
This commit is contained in:
kientzle 2005-01-08 18:32:49 +00:00
parent 031211eb44
commit 9bbb1dc91d
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@
.Ft int
.Fn archive_read_support_format_all "struct archive *"
.Ft int
.Fn archive_read_open "struct archive *" "void *client_data" "archive_read_archive_callback *" "archive_open_archive_callback *" "archive_close_archive_callback *"
.Fn archive_read_open "struct archive *" "void *client_data" "archive_open_archive_callback *" "archive_read_archive_callback *" "archive_close_archive_callback *"
.Ft int
.Fn archive_read_open_fd "struct archive *" "int fd"
.Ft int

View File

@ -73,7 +73,7 @@
.Ft int
.Fn archive_write_set_format_ustar "struct archive *"
.Ft int
.Fn archive_write_open "struct archive *" "void *client_data" "archive_write_archive_callback *" "archive_open_archive_callback *" "archive_close_archive_callback *"
.Fn archive_write_open "struct archive *" "void *client_data" "archive_open_archive_callback *" "archive_write_archive_callback *" "archive_close_archive_callback *"
.Ft int
.Fn archive_write_open_fd "struct archive *" "int fd"
.Ft int