cmdparse.h

来自「SEAL是DOS 下的32位保护模式的GUI程序」· C头文件 代码 · 共 23 行

H
23
字号
/* Initialization script parser version 1.0 (c) 2001 Kostas Michalopoulos */

#ifndef __CMDPARSE_H_INCLUDED__
#define __CMDPARSE_H_INCLUDED__

/* use this to set a variable */
void set_var_value(char *name, char *value);

/* use this to get a variable */
char *get_var_value(char *name);

/* use this to parse a command (line) */
void parse_line(char *line);

/* use this to parse a text file */
int parse_file(char *fname);

/* use this to free variables after use */
void free_vars();

#endif

⌨️ 快捷键说明

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