A tool for adding anime to your anidb list.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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