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

📄 20000224-1.c

📁 this is a gcc file, you can download it and learn its usetility, for further detail please look at t
💻 C
字号:
enum Lisp_Type{  Lisp_Int                       ,Lisp_Record                   ,Lisp_Cons                     ,Lisp_String                   ,Lisp_Vector                   ,Lisp_Symbol  ,Lisp_Char                     };typedefunion Lisp_Object  {    struct      {        enum Lisp_Type type: 3L ;        unsigned long  markbit: 1;        unsigned long  val: 32;      } gu;    long  i;  }Lisp_Object;extern int initialized;voidinit_device_faces (int *d){  if (initialized)    {      Lisp_Object tdevice;      do {          tdevice = (union Lisp_Object)                        { gu:                          { markbit: 0,                            type: Lisp_Record,                            val: ((unsigned long )d)                          }                        };      } while (0);      call_critical_lisp_code (tdevice);    }}

⌨️ 快捷键说明

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