lexLeo
Loading...
Searching...
No Matches
ast_string_utils.h
1// src/core/ast/include/internal/ast_string_utils.h
2
3#ifndef AST_STRING_UTILS_H
4#define AST_STRING_UTILS_H
5
6#ifdef USE_STRING_UTILS
7 #include "string_utils.h"
8 #define AST_STRING_DUPLICATE(s) get_current_string_duplicate()(s)
9#else
10 #include <string.h>
11 #define AST_STRING_DUPLICATE(s) osal_strdup(s)
12#endif
13
14#endif //AST_STRING_UTILS_H