mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-03 12:28:49 +08:00
9697f95b8f
This reverts commit 15d999759e
.
18 lines
254 B
C
18 lines
254 B
C
#ifndef __LOGGER_INCLUDE_H__
|
|
#define __LOGGER_INCLUDE_H__
|
|
|
|
#include "lib_acl.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void logger_set(const char *logger_name, ACL_AIO *aio);
|
|
void logger_end(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|