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

📄 cque.h

📁 Audacity是一款用於錄音和編輯聲音的、免費的開放源碼軟體。它可以執行於Mac OS X、Microsoft Windows、GNU/Linux和其它作業系統
💻 H
字号:
/*  * cque.h * macros for free lists. */typedef struct cque {    struct cque	*qnext;} CQUE;#define	Qinit(q1)	{ (q1) = 0; }/* q1 points to a stack CQUE*, new is an element to insert */#define Qenter(q1,new)  {   \    ((CQUE *)(new))->qnext = ((CQUE *)(q1)); \    q1 = ((CQUE *)(new)); }/* q1 points to a list of CQUE*: remove elt and assign to new *//* NOTE: q1 must be non-empty */#define Qget(q1,newtype,new) {  \    (new) = (newtype)(q1);  \    q1 = ((CQUE *)(q1))->qnext; }#define	Qempty(q1)	((q1) == 0)

⌨️ 快捷键说明

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