A clone of btpd with my configuration changes.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

8 líneas
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