datatype_dec.h

来自「cygwin下的包含各种c基本操作的demo程序」· C头文件 代码 · 共 41 行

H
41
字号
#ifndef _DATATYPE_DEC_typedef struct {  int aa;  void (*f_p)(char *);      }fun_str ;typedef struct ll link_list;typedef struct ll{int data;void *next;//struct ll *lnext;            //strage:??? this is correct while bellow is wrong?link_list *lnext;} ;//link_list;/*struct ll{int data;void *next;struct ll *lnext;            //strage:??? this is correct while bellow is wrong?//link_list *lnext;} ;*/struct spe{int aa;int bb;char cc;short dd;link_list *ee;char* ff[6];};// a_ll = {0xaa,0xbb};#define DEBUG   //this comment will kill all the print out#ifndef DEBUG#define printf dummy_printf#endif#endif

⌨️ 快捷键说明

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