mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-02 20:08:21 +08:00
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
|
|
|