untar.h
来自「RTEMS (Real-Time Executive for Multiproc」· C头文件 代码 · 共 32 行
H
32 行
/* * 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.rtems.com/license/LICENSE. * * $Id: untar.h,v 1.1.8.2 2004/09/17 16:59:37 joel Exp $ */#ifndef __UNTAR_H__#define __UNTAR_H__#ifdef __cplusplusextern "C" {#endif#define UNTAR_SUCCESSFUL 0#define UNTAR_FAIL 1#define UNTAR_INVALID_CHECKSUM 2#define UNTAR_INVALID_HEADER 3int Untar_FromMemory(unsigned char *tar_buf, unsigned long size);int Untar_FromFile(char *tar_name);#ifdef __cplusplus}#endif#endif /* __UNTAR_H__ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?