自我命名规范

来源:互联网 发布:网络剧的受众分析 编辑:程序博客网 时间:2024/06/05 15:12

文件夹名:HotDog

文件名:HotDog.c

结构体类型名:

typedef struct tagHotDog
{
}HOT_DOG_S,*P_HOT_DOG_S;

枚举类型名:

typedef enum enHotDog
{
}HOT_DOG_E;

共用体类型名:

宏定义:

函数名:

类名:

局部变量名:

int iValue;

unsigned int uiValue;

int* piValue;

unsigned int* puiValue;

char cValue;

unsigned char ucValue;



0 0