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

📄 sftpcdoc.h

📁 伯克利做的SFTP安全文件传输协议
💻 H
字号:
// sftpcdoc.h// declarations for sftpcdoc.cpp#ifndef __SFTPCDOC_H#define __SFTPCDOC_H#include "typ.h"       // bool// define an alias for a commandstruct Alias {  char const *alias;           // command user enters  char const *expansion;       // string into which it expands};// all aliasesextern Alias const aliases[];extern int const numAliases;// return index of alias, or -1 if not foundint findAlias(char const *alias);// documentation for a (non-alias) commandstruct Command {  bool common;           // true for commands listed in 'help' command  char const *name;      // name as typed by user  char const *args;      // arguments format  char const *blurb;     // one-line summary  char const *arglines;  // LF-separated lines for each argument  char const *desc;      // LF-separated lines describing cmd generally};// docs for all commandextern Command const commands[];extern int const numCommands;// return index of command, or -1 if not foundint findCommand(char const *name);// print list of commands (either the common ones, or the// uncommon ones)void printCommandList(bool common);// write part of the HTML documentation to stdoutvoid writeHTMLCommands();#endif // __SFTPCDOC_H

⌨️ 快捷键说明

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