⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tarheader.cpp

📁 压缩软件源码
💻 CPP
字号:
// 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  "; // 7 chars and a null
    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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -