A clone of btpd with my configuration changes.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

8 satır
164 B

  1. #ifndef BTPD_UTILS_H
  2. #define BTPD_UTILS_H
  3. /* get the number of elements in a static table */
  4. #define ARRAY_COUNT(array) (sizeof(array) / sizeof(array[0]))
  5. #endif