mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-30 10:57:34 +08:00
17 lines
241 B
C
17 lines
241 B
C
#ifndef ACL_EXEC_COMMAND_INCLUDE_H
|
|
#define ACL_EXEC_COMMAND_INCLUDE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "acl_define.h"
|
|
|
|
ACL_API void acl_exec_command(const char *command);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|