input.h
来自「这是完整的gcc源代码」· C头文件 代码 · 共 23 行
H
23 行
/* Source file current line is coming from. */extern char *input_filename;/* Top-level source file. */extern char *main_input_filename;/* Line number in current source file. */extern int lineno;struct file_stack { char *name; struct file_stack *next; int line; };/* Stack of currently pending input files. The line member is not accurate for the innermost file on the stack. */extern struct file_stack *input_file_stack;/* Incremented on each change to input_file_stack. */extern int input_file_stack_tick;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?