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.

15 satır
197B

  1. #ifndef LICK_MESSAGE_H
  2. #define LICKS_MESSAGE_H
  3. #define MSG_REPLY 1
  4. #define MSG_CHAR_ARRAY 2
  5. struct licks_message {
  6. int type;
  7. union {
  8. char char_array[32];
  9. };
  10. };
  11. #endif