web-dev-qa-db-ja.com

複数の定義が定義されていない場合のプリプロセッサチェック

ユーザーが編集可能なヘッダーに#definesを選択しているので、ユーザーがそれらを完全に削除した場合に、定義が存在することを後で確認したいと思います。

#if defined MANUF && defined SERIAL && defined MODEL
    // All defined OK so do nothing
#else
    #error "User is stoopid!"
#endif

これはまったく問題なく動作しますが、複数の定義が存在しないかどうかを確認するより良い方法があるかどうか疑問に思っています...つまり、次のようなものです:

#ifn defined MANUF || defined SERIAL ||.... // note the n in #ifn

または多分

#if !defined MANUF || !defined SERIAL ||....

空の#ifセクションの必要性を削除します。

57
Toby
#if !defined(MANUF) || !defined(SERIAL) || !defined(MODEL)
96
Sergey L.

FWIW、@ SergeyLの答えは素晴らしいですが、ここにテスト用のわずかなバリエーションがあります。論理的または論理的への変更に注意してください。

main.cには、次のようなメインラッパーがあります。

#if !defined(TEST_SPI) && !defined(TEST_SERIAL) && !defined(TEST_USB)
int main(int argc, char *argv[]) {
  // the true main() routine.
}

spi.c、serial.c、およびusb.cには、それぞれのテストコード用のメインラッパーがあります。

#ifdef TEST_USB
int main(int argc, char *argv[]) {
  // the  main() routine for testing the usb code.
}

すべてのcファイルに含まれているconfig.hには、次のようなエントリがあります。

// Uncomment below to test the serial
//#define TEST_SERIAL


// Uncomment below to test the spi code
//#define TEST_SPI

// Uncomment below to test the usb code
#define TEST_USB
2
netskink