⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 type.c

📁 vdhl and matlab, i think it good for you
💻 C
字号:
#include "type.h"#include "sym.h"pSym type_record::find_elem( STRING name ) {  FIFO_LIST<pSym>::handle h;  pSym elem_sym;  pSym tmp;	  elem_sym = NULL;  for (h = elem_list.first(); h != NULL; h = elem_list.next( h )) {    tmp = elem_list.get_item( h );    if (tmp->get_name().GetText() == name.GetText()) {      elem_sym = tmp;      break;    }  }  return elem_sym;} // find_elem

⌨️ 快捷键说明

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