]> cygwin.com Git - cygwin-apps/setup.git/blame - tar.h
* Replace everything with a new GUI version
[cygwin-apps/setup.git] / tar.h
CommitLineData
99d1bf2d
DD
1/*
2 * Copyright (c) 2000, Red Hat, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
11 *
12 * Written by DJ Delorie <dj@cygnus.com>
13 *
14 */
15
16#ifndef __TAR_H_
17#define __TAR_H_
18
19/* Only one tarfile may be open at a time. gzipped files handled
20 automatically */
21
22/* returns zero on success, nonzero on failure */
23int tar_open (char *pathname);
24
25/* returns pointer to static buf containing name of next file */
26char * tar_next_file ();
27
23c9e63c
DD
28/* byte position in [compressed] file */
29int tar_ftell ();
30
99d1bf2d
DD
31/* pass adjusted path, returns zero on success, nonzero on failure */
32int tar_read_file (char *path);
33
34/* closes the file */
35int tar_close ();
36
37/* pass path to tar file and from/to pairs for path prefix (NULLs at
38 end , returns zero if completely successful, nonzero (counts
39 errors) on failure */
40int tar_auto (char *pathname, char **map);
41
23c9e63c
DD
42int tar_mkdir_p (int isadir, char *path);
43
99d1bf2d
DD
44/*
45extern int _tar_verbose;
46extern FILE * _tar_vfile;
47*/
48
49#endif
This page took 0.028013 seconds and 5 git commands to generate.