tarheader.cpp

来自「由7-zip提供的压缩、解压缩程序」· C++ 代码 · 共 25 行

CPP
25
字号
// Archive/Tar/Header.h#include "StdAfx.h"#include "TarHeader.h"namespace NArchive {namespace NTar {namespace NFileHeader {  // The checksum field is filled with this while the checksum is computed.  const char *kCheckSumBlanks = "        ";   // 8 blanks, no null  const char *kLongLink = "././@LongLink";  // The magic field is filled with this if uname and gname are valid.  namespace NMagic   {    const char *kUsTar  = "ustar"; // 5 chars    const char *kGNUTar = "GNUtar "; // 7 chars and a null    const char *kEmpty = "\0\0\0\0\0\0\0\0"; // 7 chars and a null  }}}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?