A clone of btpd with my configuration changes.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

8 行
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