global.h
来自「最经典的分子对结软件」· C头文件 代码 · 共 29 行
H
29 行
/* *//* Copyright UCSF, 1997 *//* *//*Header file for structure containing global variablesInclude the following statements before the main() routine:#include "global.h"GLOBAL global = {0};Written by Todd Ewing10/95*/typedef struct global_struct{ FILE_NAME executable; /* Name of executable used for run */ FILE_NAME job_name; /* Name identifying particular execution */ int output_volume; /* Amount of output information (NULL = normal, v = verbose, t = terse) */ FILE *infile; /* Input file stream */ FILE *outfile; /* Output file stream */} GLOBAL;extern GLOBAL global;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?