プロジェクトでは、C++ とそのように定義された stdbool.h を使用する C ライブラリとの間でインターフェイスをとっています。
#ifndef _STDBOOL_H
#define _STDBOOL_H
/* C99 Boolean types for compilers without C99 support */
/* http://www.opengroup.org/onlinepubs/009695399/basedefs/stdbool.h.html */
#if !defined(__cplusplus)
#if !defined(__GNUC__)
/* _Bool builtin type is included in GCC */
typedef enum { _Bool_must_promote_to_int = -1, false = 0, true = 1 } _Bool;
#endif
#define bool _Bool
#define true 1
#define false 0
#define __bool_true_false_are_defined 1
#endif
#endif
一部の構造体にはbool
メンバーがあります。したがって、これらの構造体の 1 つを C++ 関数内でローカル変数として定義し、それを C 関数に渡すと、bool は C++ では 1 bye、C では 4 であるため、C++ と C の間でサイズが一致しません。
私の現在の解決策に頼らずにこれを克服する方法について誰かアドバイスはありますか
//#define bool _Bool
#define bool unsigned char
stdbool.hの C99 標準に反するもの