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

10 líneas
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 */