A tool for adding anime to your anidb list.
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.

10 satır
373B

  1. #ifndef _UIO_H
  2. #define _UIO_H
  3. void uio_user(const char *format, ...) __attribute__((format (printf, 1, 2)));
  4. void uio_error(const char *format, ...) __attribute__((format (printf, 1, 2)));
  5. void uio_debug(const char *format, ...) __attribute__((format (printf, 1, 2)));
  6. void uio_warning(const char *format, ...) __attribute__((format (printf, 1, 2)));
  7. #endif /* _UIO_H */