tarlib.h
来自「vxwork源代码」· C头文件 代码 · 共 42 行
H
42 行
/* tarLib.h - UNIX tar compatible library *//* Copyright 1999-2002 Wind River Systems, Inc. *//*modification history--------------------01c,20sep01,jkf SPR#69031, common code for both AE & 5.x.01b,31jul99,jkf T2 merge, tidiness & spelling.01a,08jun98,lrn written*/#ifndef __INCtarLibh#define __INCtarLibh#ifdef __cplusplusextern "C" {#endif/* function prototypes */#if defined(__STDC__) || defined(__cplusplus)IMPORT void tarHelp ( void );IMPORT STATUS tarExtract (char * pTape, int bfactor, BOOL verbose);IMPORT STATUS tarArchive ( char *pTape, int bfactor, BOOL verbose, char *pName);IMPORT STATUS tarToc ( char * tape, int bfactor);#elseIMPORT void tarHelp ();IMPORT STATUS tarExtract ();IMPORT STATUS tarArchive ();IMPORT STATUS tarToc ();#endif/* globals */IMPORT char * TAPE ; /* default archive file */#ifdef __cplusplus}#endif#endif /* __INCtarLibh */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?