Back to home page

LXR

 
 

    


Warning, /cpukit/libmisc/untar/README.md is written in an unsupported language. File is not indexed.

0001 untar
0002 =====
0003 
0004 Author: Jake Janovetz 7.6.1999
0005 untar.c contains two procedures for extracting files from a UNIX
0006 tar file:
0007 
0008     int Untar_FromMemory(unsigned char *tar_buf, unsigned long size);
0009     int Untar_FromFile(char *tar_name);
0010 
0011 Untar_FromMemory(...) takes its input from a chunk of allocated memory.
0012 This is particularly useful when the tar is stored in Flash memory or
0013 comes from the FTP daemon by way of a hook.
0014 
0015 Untar_FromFile(...) is identical except the source is from an existing
0016 file.  The fully qualified filename is passed through char *tar_name.
0017 
0018 
0019 
0020 BUGS: Please email janovetz@uiuc.edu