URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [rtems-20020807/] [c/] [src/] [libmisc/] [untar/] [README] - Rev 1782
Compare with Previous | Blame | View Log
### untar information## Author: Jake Janovetz 7.6.1999## README,v 1.1 1999/07/09 17:23:15 joel Exp#untar.c contains two procedures for extracting files from a UNIXtar file:int Untar_FromMemory(unsigned char *tar_buf, unsigned long size);int Untar_FromFile(char *tar_name);Untar_FromMemory(...) takes its input from a chunk of allocated memory.This is particularly useful when the tar is stored in Flash memory orcomes from the FTP daemon by way of a hook.Untar_FromFile(...) is identical except the source is from an existingfile. The fully qualified filename is passed through char *tar_name.BUGS: Please email janovetz@uiuc.edu-----
