A tool for adding anime to your anidb list.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

10 wiersze
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 */