Use #define to define macros conditionally

前端 未结 0 1946
暖寄归人
暖寄归人 2020-12-22 02:27

I have the following C header file:

#ifndef __MATRIX_H__
#define __MATRIX_H__

struct matrix_t
{
    uint8_t col1;
    uint8_t col2;
    uint8_t col3;
};

ext         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题