系统相关
首页 > 系统相关> > linux c 常用代码

linux c 常用代码

作者:互联网

常用C代码碎片:
 1、函数参数接口
   typedef int(*pfunc)(int x, int y)  //pfunc是带两个参数,返回值为int
    pfunc handler



 2、宏函数、宏字符串连接
    #define joiner(param1, param2) param1##param2
    #define tostring(param) #param
    

 3、位赋值操作
    typedef struct
    {
      u8 lv1:1;//故障等级1    u8类型的低位
      u8 lv2:1;//故障等级2
      u8 lv3:1;//故障等级3
      u8 max_lv:2;//最高故障等级(单个故障)   
      u8 res:3;//保留          u8类型的高位
    }SINGLE_FLV_FLAG_BIT;//单个故障等级标志位位域

4、统计二进制数中的个数 
  int func(int x) {
     int countx = 0;
     while(x) {
        countx++;
        x = x &(x-1);
     }
     return countx;
  }

 

标签:常用,u8,pfunc,int,代码,countx,故障,linux,等级
来源: https://www.cnblogs.com/hzijone/p/16496553.html