mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-05 05:18:53 +08:00
9697f95b8f
This reverts commit 15d999759e
.
22 lines
332 B
C
22 lines
332 B
C
#ifndef ACL_TEST_VAR_INCLUDE_H
|
|
#define ACL_TEST_VAR_INCLUDE_H
|
|
|
|
# ifdef __cplusplus
|
|
extern "C" {
|
|
# endif
|
|
|
|
#include "../stdlib/acl_array.h"
|
|
|
|
extern int var_aut_log_level;
|
|
extern int var_aut_verbose;
|
|
|
|
extern ACL_ARRAY *var_aut_line_array;
|
|
extern int var_aut_valid_line_idx;
|
|
|
|
# ifdef __cplusplus
|
|
}
|
|
# endif
|
|
|
|
#endif
|
|
|