log.h 305 B

12345678910111213141516171819
  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 <syslog.h>
  7. #include <faux/faux.h>
  8. C_DECL_BEGIN
  9. bool_t faux_log_facility_id(const char *str, int *facility);
  10. const char *faux_log_facility_str(int facility_id);
  11. C_DECL_END
  12. #endif