logger_stdout.h 373 B

123456789101112131415
  1. /*
  2. * This work is licensed under a Creative Commons CCZero 1.0 Universal License.
  3. * See http://creativecommons.org/publicdomain/zero/1.0/ for more information.
  4. */
  5. #ifndef LOGGER_STDOUT_H_
  6. #define LOGGER_STDOUT_H_
  7. #include "util/ua_log.h"
  8. /** Initialises the logger for the current thread. */
  9. void Logger_Stdout_init(UA_Logger *logger);
  10. #endif /* LOGGER_STDOUT_H_ */