2 * Copyright (c) 2003-2007 Tim Kientzle
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 #include "archive_platform.h"
27 __FBSDID("$FreeBSD: src/lib/libarchive/archive_virtual.c,v 1.1 2007/03/03 07:37:36 kientzle Exp $");
30 #include "archive_entry.h"
31 #include "archive_private.h"
34 archive_write_close(struct archive
*a
)
36 return ((a
->vtable
->archive_write_close
)(a
));
39 #if ARCHIVE_API_VERSION > 1
41 archive_write_finish(struct archive
*a
)
43 return ((a
->vtable
->archive_write_finish
)(a
));
46 /* Temporarily allow library to compile with either 1.x or 2.0 API. */
48 archive_write_finish(struct archive
*a
)
50 (void)(a
->vtable
->archive_write_finish
)(a
);
55 archive_write_header(struct archive
*a
, struct archive_entry
*entry
)
57 return ((a
->vtable
->archive_write_header
)(a
, entry
));
61 archive_write_finish_entry(struct archive
*a
)
63 return ((a
->vtable
->archive_write_finish_entry
)(a
));
66 #if ARCHIVE_API_VERSION > 1
69 /* Temporarily allow library to compile with either 1.x or 2.0 API. */
72 archive_write_data(struct archive
*a
, const void *buff
, size_t s
)
74 return ((a
->vtable
->archive_write_data
)(a
, buff
, s
));
78 archive_write_data_block(struct archive
*a
, const void *buff
, size_t s
, off_t o
)
80 return ((a
->vtable
->archive_write_data_block
)(a
, buff
, s
, o
));