A clone of btpd with my configuration changes.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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