common头文件

#ifndef COMMON_HHH
#define COMMON_HHH

#define  ASSERT(p) \
    do{\
        if (!p){\
        printf("%s:%d\n",__FILE__,__LINE__ );\
        }\
    } while (0)\

#endif

 

转载于:https://www.cnblogs.com/unixshell/p/3797115.html

你可能感兴趣的:(common头文件)