source: rtems/cpukit/libmisc/untar/untar.h @ 738a9ae

4.104.114.84.95
Last change on this file since 738a9ae was 3160ff6, checked in by Joel Sherrill <joel.sherrill@…>, on 09/04/03 at 18:54:19

2003-09-04 Joel Sherrill <joel@…>

  • cpuuse/cpuuse.c, cpuuse/cpuuse.h, devnull/devnull.c, devnull/devnull.h, dummy/dummy.c, dumpbuf/dumpbuf.c, dumpbuf/dumpbuf.h, fsmount/fsmount.c, fsmount/fsmount.h, serdbg/serdbgio.c, serdbg/termios_printk.c, stackchk/check.c, stackchk/internal.h, stackchk/stackchk.h, untar/untar.c, untar/untar.h: URL for license changed.
  • Property mode set to 100644
File size: 558 bytes
Line 
1/*
2 *  Written by: Jake Janovetz <janovetz@tempest.ece.uiuc.edu>
3 *
4 *  The license and distribution terms for this file may be
5 *  found in the file LICENSE in this distribution or at
6 *  http://www.rtems.com/license/LICENSE.
7 *
8 *  $Id$
9 */
10
11#ifndef __UNTAR_H__
12#define __UNTAR_H__
13
14
15#define UNTAR_SUCCESSFUL         0
16#define UNTAR_FAIL               1
17#define UNTAR_INVALID_CHECKSUM   2
18#define UNTAR_INVALID_HEADER     3
19
20
21int Untar_FromMemory(unsigned char *tar_buf, unsigned long size);
22int Untar_FromFile(char *tar_name);
23
24
25#endif  /* __UNTAR_H__ */
Note: See TracBrowser for help on using the repository browser.