URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [libmisc/] [untar/] [untar.h] - Rev 227
Go to most recent revision | Compare with Previous | Blame | View Log
/* * Written by: Jake Janovetz <janovetz@tempest.ece.uiuc.edu> * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http:'/www.OARcorp.com/rtems/license.html. * * $Id: untar.h,v 1.2 2001-09-27 12:01:46 chris Exp $ */ #ifndef __UNTAR_H__ #define __UNTAR_H__ #define UNTAR_SUCCESSFUL 0 #define UNTAR_FAIL 1 #define UNTAR_INVALID_CHECKSUM 2 #define UNTAR_INVALID_HEADER 3 int Untar_FromMemory(unsigned char *tar_buf, unsigned long size); int Untar_FromFile(char *tar_name); #endif /* __UNTAR_H__ */
Go to most recent revision | Compare with Previous | Blame | View Log