cmdline.h
来自「简单的虚拟机」· C头文件 代码 · 共 14 行
H
14 行
#include <stdbool.h>#define DEF_HEAP 64 /* default heap = 64KB = 65,536 bytes */#define DEF_STACK 64 /* default stack = 64KB = 65,536 bytes */struct CmdLine{ char *binFile; /* name of the bytecode file to execute */ bool ok; /*TRUE or FALSE*/};void printUsage(char* fname);struct CmdLine handleArguments(int argc, char* argv[]);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?