Changeset View
Changeset View
Standalone View
Standalone View
intern/clog/CLG_log.h
| Show First 20 Lines • Show All 133 Lines • ▼ Show 20 Lines | void CLG_logf( | ||||
| const char *format, ...) | const char *format, ...) | ||||
| _CLOG_ATTR_NONNULL(1, 3, 4, 5) _CLOG_ATTR_PRINTF_FORMAT(5, 6); | _CLOG_ATTR_NONNULL(1, 3, 4, 5) _CLOG_ATTR_PRINTF_FORMAT(5, 6); | ||||
| /* Main initializer and distructor (per session, not logger). */ | /* Main initializer and distructor (per session, not logger). */ | ||||
| void CLG_init(void); | void CLG_init(void); | ||||
| void CLG_exit(void); | void CLG_exit(void); | ||||
| void CLG_output_set(void *file_handle); | void CLG_output_set(void *file_handle); | ||||
| void CLG_output_use_stdout_set(int value); | |||||
| void CLG_output_use_basename_set(int value); | void CLG_output_use_basename_set(int value); | ||||
| void CLG_output_use_timestamp_set(int value); | void CLG_output_use_timestamp_set(int value); | ||||
| void CLG_fatal_fn_set(void (*fatal_fn)(void *file_handle)); | void CLG_fatal_fn_set(void (*fatal_fn)(void *file_handle)); | ||||
| void CLG_backtrace_fn_set(void (*fatal_fn)(void *file_handle)); | void CLG_backtrace_fn_set(void (*fatal_fn)(void *file_handle)); | ||||
| void CLG_type_filter_include(const char *type_filter, int type_filter_len); | void CLG_type_filter_include(const char *type_filter, int type_filter_len); | ||||
| void CLG_type_filter_exclude(const char *type_filter, int type_filter_len); | void CLG_type_filter_exclude(const char *type_filter, int type_filter_len); | ||||
| ▲ Show 20 Lines • Show All 57 Lines • Show Last 20 Lines | |||||