main.c

来自「这是一个VHDL(硬件描述语言)的编译器」· C语言 代码 · 共 26 行

C
26
字号
#include <assert.h>#include <stdlib.h>#include <stdio.h>#include "stdtypes.h"#include "fifo_list.h"#include "str.h"#include "sym.h"#include "type.h"#include "const.h"#include "dsym.h"main( int argc, char *argv[] ){    sym s;    sym_type named_type;    type_record rec_type;    type_record * pRecType;    pRecType = &rec_type;    named_type.set_ty_type( pRecType );} // main

⌨️ 快捷键说明

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