log.h 226 B

12345678910111213141516
  1. /** @file log.h
  2. * @brief Public interface for faux log functions.
  3. */
  4. #ifndef _faux_log_h
  5. #define _faux_log_h
  6. #include "faux/faux.h"
  7. C_DECL_BEGIN
  8. int faux_log_facility(const char *str, int *facility);
  9. C_DECL_END
  10. #endif