Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file common.h |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief common internal definitions for libyang |
| 5 | * |
| 6 | * Copyright (c) 2015 - 2018 CESNET, z.s.p.o. |
| 7 | * |
| 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
| 11 | * |
| 12 | * https://opensource.org/licenses/BSD-3-Clause |
| 13 | */ |
| 14 | |
| 15 | #ifndef LY_COMMON_H_ |
| 16 | #define LY_COMMON_H_ |
| 17 | |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame^] | 18 | #include <assert.h> |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 19 | #include <stdint.h> |
| 20 | #include <stdlib.h> |
| 21 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 22 | #include "config.h" |
Radek Krejci | ad57350 | 2018-09-07 15:26:55 +0200 | [diff] [blame] | 23 | #include "log.h" |
Radek Krejci | c59bc97 | 2018-09-17 16:13:06 +0200 | [diff] [blame] | 24 | #include "tree_schema.h" |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 25 | |
| 26 | #if __STDC_VERSION__ >= 201112 && !defined __STDC_NO_THREADS__ |
| 27 | # define THREAD_LOCAL _Thread_local |
| 28 | #elif defined __GNUC__ || \ |
| 29 | defined __SUNPRO_C || \ |
| 30 | defined __xlC__ |
| 31 | # define THREAD_LOCAL __thread |
| 32 | #else |
| 33 | # error "Cannot define THREAD_LOCAL" |
| 34 | #endif |
| 35 | |
Radek Krejci | c59bc97 | 2018-09-17 16:13:06 +0200 | [diff] [blame] | 36 | #define GETMACRO1(_1, NAME, ...) NAME |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 37 | #define GETMACRO2(_1, _2, NAME, ...) NAME |
| 38 | #define GETMACRO3(_1, _2, _3, NAME, ...) NAME |
| 39 | #define GETMACRO4(_1, _2, _3, _4, NAME, ...) NAME |
| 40 | |
| 41 | /* |
Radek Krejci | c59bc97 | 2018-09-17 16:13:06 +0200 | [diff] [blame] | 42 | * If the compiler supports attribute to mark objects as hidden, mark all |
| 43 | * objects as hidden and export only objects explicitly marked to be part of |
| 44 | * the public API. |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 45 | */ |
Radek Krejci | c59bc97 | 2018-09-17 16:13:06 +0200 | [diff] [blame] | 46 | #define API __attribute__((visibility("default"))) |
| 47 | |
| 48 | /****************************************************************************** |
| 49 | * Logger |
| 50 | *****************************************************************************/ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 51 | |
| 52 | /* internal logging options */ |
| 53 | enum int_log_opts { |
| 54 | ILO_LOG = 0, /* log normally */ |
| 55 | ILO_STORE, /* only store any messages, they will be processed higher on stack */ |
| 56 | ILO_IGNORE, /* completely ignore messages */ |
| 57 | ILO_ERR2WRN, /* change errors to warnings */ |
| 58 | }; |
| 59 | |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 60 | enum LY_VLOG_ELEM { |
| 61 | LY_VLOG_NONE = 0, |
| 62 | LY_VLOG_LINE,/* line number */ |
| 63 | LY_VLOG_LYS, /* struct lysc_node* */ |
| 64 | LY_VLOG_LYD, /* struct lyd_node* */ |
| 65 | LY_VLOG_STR, /* const char* */ |
| 66 | LY_VLOG_PREV /* use exact same previous path */ |
| 67 | }; |
| 68 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 69 | extern THREAD_LOCAL enum int_log_opts log_opt; |
| 70 | extern volatile uint8_t ly_log_level; |
| 71 | extern volatile uint8_t ly_log_opts; |
| 72 | |
Radek Krejci | ad57350 | 2018-09-07 15:26:55 +0200 | [diff] [blame] | 73 | void ly_err_free(void *ptr); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 74 | void ly_log(const struct ly_ctx *ctx, LY_LOG_LEVEL level, LY_ERR no, const char *format, ...); |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 75 | void ly_vlog(const struct ly_ctx *ctx, enum LY_VLOG_ELEM elem_type, const void *elem, LY_VECODE code, const char *format, ...); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 76 | |
| 77 | #define LOGERR(ctx, errno, str, args...) ly_log(ctx, LY_LLERR, errno, str, ##args) |
| 78 | #define LOGWRN(ctx, str, args...) ly_log(ctx, LY_LLWRN, 0, str, ##args) |
| 79 | #define LOGVRB(str, args...) ly_log(NULL, LY_LLVRB, 0, str, ##args) |
| 80 | |
Radek Krejci | 4ab6156 | 2018-09-05 15:00:37 +0200 | [diff] [blame] | 81 | #ifdef NDEBUG |
| 82 | # define LOGDBG(dbg_group, str, args...) |
| 83 | #else |
| 84 | void ly_log_dbg(int group, const char *format, ...); |
| 85 | # define LOGDBG(dbg_group, str, args...) ly_log_dbg(dbg_group, str, ##args); |
| 86 | #endif |
| 87 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 88 | #define LOGMEM(CTX) LOGERR(CTX, LY_EMEM, "Memory allocation failed (%s()).", __func__) |
| 89 | #define LOGINT(CTX) LOGERR(CTX, LY_EINT, "Internal error (%s:%d).", __FILE__, __LINE__) |
| 90 | #define LOGARG(CTX, ARG) LOGERR(CTX, LY_EINVAL, "Invalid argument %s (%s()).", #ARG, __func__) |
Radek Krejci | c07921a | 2018-09-17 11:40:15 +0200 | [diff] [blame] | 91 | #define LOGVAL(CTX, ELEM_TYPE, ELEM, CODE, FORMAT...) ly_vlog(CTX, ELEM_TYPE, ELEM, CODE, ##FORMAT) |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 92 | |
| 93 | #define LOGMEM_RET(CTX) LOGMEM(CTX); return LY_EMEM |
| 94 | #define LOGINT_RET(CTX) LOGINT(CTX); return LY_EINT |
| 95 | #define LOGARG_RET(CTX) LOGARG(CTX); return LY_EINVAL |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 96 | |
| 97 | /* |
| 98 | * Common code to check return value and perform appropriate action. |
| 99 | */ |
| 100 | #define LY_CHECK_GOTO(COND, GOTO) if (COND) {goto GOTO;} |
| 101 | #define LY_CHECK_ERR_GOTO(COND, ERR, GOTO) if (COND) {ERR; goto GOTO;} |
Radek Krejci | c59bc97 | 2018-09-17 16:13:06 +0200 | [diff] [blame] | 102 | #define LY_CHECK_RET1(RETVAL) if (RETVAL != LY_SUCCESS) {return RETVAL;} |
| 103 | #define LY_CHECK_RET2(COND, RETVAL) if (COND) {return RETVAL;} |
| 104 | #define LY_CHECK_RET(...) GETMACRO2(__VA_ARGS__, LY_CHECK_RET2, LY_CHECK_RET1)(__VA_ARGS__) |
Michal Vasko | b3d0d6b | 2018-09-07 10:17:33 +0200 | [diff] [blame] | 105 | #define LY_CHECK_ERR_RET(COND, ERR, RETVAL) if (COND) {ERR; return RETVAL;} |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 106 | |
Michal Vasko | b3d0d6b | 2018-09-07 10:17:33 +0200 | [diff] [blame] | 107 | #define LY_CHECK_ARG_GOTO1(CTX, ARG, GOTO) if (!ARG) {LOGARG(CTX, ARG);goto GOTO;} |
| 108 | #define LY_CHECK_ARG_GOTO2(CTX, ARG1, ARG2, GOTO) LY_CHECK_ARG_GOTO1(CTX, ARG1, GOTO);LY_CHECK_ARG_GOTO1(CTX, ARG2, GOTO) |
| 109 | #define LY_CHECK_ARG_GOTO3(CTX, ARG1, ARG2, ARG3, GOTO) LY_CHECK_ARG_GOTO2(CTX, ARG1, ARG2, GOTO);LY_CHECK_ARG_GOTO1(CTX, ARG3, GOTO) |
| 110 | #define LY_CHECK_ARG_GOTO(CTX, ...) GETMACRO4(__VA_ARGS__, LY_CHECK_ARG_GOTO3, LY_CHECK_ARG_GOTO2, LY_CHECK_ARG_GOTO1)(CTX, __VA_ARGS__) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 111 | |
Michal Vasko | b3d0d6b | 2018-09-07 10:17:33 +0200 | [diff] [blame] | 112 | #define LY_CHECK_ARG_RET1(CTX, ARG, RETVAL) if (!ARG) {LOGARG(CTX, ARG);return RETVAL;} |
| 113 | #define LY_CHECK_ARG_RET2(CTX, ARG1, ARG2, RETVAL) LY_CHECK_ARG_RET1(CTX, ARG1, RETVAL);LY_CHECK_ARG_RET1(CTX, ARG2, RETVAL) |
| 114 | #define LY_CHECK_ARG_RET3(CTX, ARG1, ARG2, ARG3, RETVAL) LY_CHECK_ARG_RET2(CTX, ARG1, ARG2, RETVAL);LY_CHECK_ARG_RET1(CTX, ARG3, RETVAL) |
| 115 | #define LY_CHECK_ARG_RET(CTX, ...) GETMACRO4(__VA_ARGS__, LY_CHECK_ARG_RET3, LY_CHECK_ARG_RET2, LY_CHECK_ARG_RET1)(CTX, __VA_ARGS__) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 116 | |
Radek Krejci | d972c25 | 2018-09-25 13:23:39 +0200 | [diff] [blame] | 117 | /* count sequence size for LY_VCODE_INCHILDSTMT validation error code */ |
| 118 | size_t LY_VCODE_INSTREXP_len(const char *str); |
| 119 | /* default maximum characters to print in LY_VCODE_INCHILDSTMT */ |
| 120 | #define LY_VCODE_INSTREXP_MAXLEN 20 |
| 121 | |
Michal Vasko | 5825771 | 2018-09-12 11:11:38 +0200 | [diff] [blame] | 122 | #define LY_VCODE_INCHAR LYVE_SYNTAX, "Invalid character 0x%x." |
Michal Vasko | 37d705c | 2018-09-12 15:31:26 +0200 | [diff] [blame] | 123 | #define LY_VCODE_INSTREXP LYVE_SYNTAX, "Invalid character sequence \"%.*s\", expected %s." |
Michal Vasko | 5825771 | 2018-09-12 11:11:38 +0200 | [diff] [blame] | 124 | #define LY_VCODE_EOF LYVE_SYNTAX, "Unexpected end-of-file." |
Radek Krejci | d91dbaf | 2018-09-21 15:51:39 +0200 | [diff] [blame] | 125 | #define LY_VCODE_NTERM LYVE_SYNTAX, "%s not terminated." |
| 126 | #define LY_VCODE_NSUPP LYVE_SYNTAX, "%s not supported." |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 127 | #define LY_VCODE_INSTMT LYVE_SYNTAX_YANG, "Invalid keyword \"%s\"." |
Michal Vasko | 5825771 | 2018-09-12 11:11:38 +0200 | [diff] [blame] | 128 | #define LY_VCODE_INCHILDSTMT LYVE_SYNTAX_YANG, "Invalid keyword \"%s\" as a child of \"%s\"." |
| 129 | #define LY_VCODE_DUPSTMT LYVE_SYNTAX_YANG, "Duplicate keyword \"%s\"." |
Michal Vasko | 37d705c | 2018-09-12 15:31:26 +0200 | [diff] [blame] | 130 | #define LY_VCODE_INVAL LYVE_SYNTAX_YANG, "Invalid value \"%.*s\" of \"%s\"." |
Michal Vasko | 5825771 | 2018-09-12 11:11:38 +0200 | [diff] [blame] | 131 | #define LY_VCODE_MISSTMT LYVE_SYNTAX_YANG, "Missing mandatory keyword \"%s\" as a child of \"%s\"." |
| 132 | #define LY_VCODE_INORD LYVE_SYNTAX_YANG, "Invalid keyword \"%s\", it cannot appear after \"%s\"." |
Michal Vasko | 37d705c | 2018-09-12 15:31:26 +0200 | [diff] [blame] | 133 | #define LY_VCODE_OOB LYVE_SYNTAX_YANG, "Value \"%.*s\" is out of \"%s\" bounds." |
Michal Vasko | 5825771 | 2018-09-12 11:11:38 +0200 | [diff] [blame] | 134 | #define LY_VCODE_INDEV LYVE_SYNTAX_YANG, "Deviate \"%s\" does not support keyword \"%s\"." |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 135 | |
Radek Krejci | c59bc97 | 2018-09-17 16:13:06 +0200 | [diff] [blame] | 136 | /****************************************************************************** |
| 137 | * Parsers |
| 138 | *****************************************************************************/ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 139 | |
Radek Krejci | c59bc97 | 2018-09-17 16:13:06 +0200 | [diff] [blame] | 140 | enum yang_keyword { |
| 141 | YANG_NONE = 0, |
| 142 | YANG_ACTION, |
| 143 | YANG_ANYDATA, |
| 144 | YANG_ANYXML, |
| 145 | YANG_ARGUMENT, |
| 146 | YANG_AUGMENT, |
| 147 | YANG_BASE, |
| 148 | YANG_BELONGS_TO, |
| 149 | YANG_BIT, |
| 150 | YANG_CASE, |
| 151 | YANG_CHOICE, |
| 152 | YANG_CONFIG, |
| 153 | YANG_CONTACT, |
| 154 | YANG_CONTAINER, |
| 155 | YANG_DEFAULT, |
| 156 | YANG_DESCRIPTION, |
| 157 | YANG_DEVIATE, |
| 158 | YANG_DEVIATION, |
| 159 | YANG_ENUM, |
| 160 | YANG_ERROR_APP_TAG, |
| 161 | YANG_ERROR_MESSAGE, |
| 162 | YANG_EXTENSION, |
| 163 | YANG_FEATURE, |
| 164 | YANG_FRACTION_DIGITS, |
| 165 | YANG_GROUPING, |
| 166 | YANG_IDENTITY, |
| 167 | YANG_IF_FEATURE, |
| 168 | YANG_IMPORT, |
| 169 | YANG_INCLUDE, |
| 170 | YANG_INPUT, |
| 171 | YANG_KEY, |
| 172 | YANG_LEAF, |
| 173 | YANG_LEAF_LIST, |
| 174 | YANG_LENGTH, |
| 175 | YANG_LIST, |
| 176 | YANG_MANDATORY, |
| 177 | YANG_MAX_ELEMENTS, |
| 178 | YANG_MIN_ELEMENTS, |
| 179 | YANG_MODIFIER, |
| 180 | YANG_MODULE, |
| 181 | YANG_MUST, |
| 182 | YANG_NAMESPACE, |
| 183 | YANG_NOTIFICATION, |
| 184 | YANG_ORDERED_BY, |
| 185 | YANG_ORGANIZATION, |
| 186 | YANG_OUTPUT, |
| 187 | YANG_PATH, |
| 188 | YANG_PATTERN, |
| 189 | YANG_POSITION, |
| 190 | YANG_PREFIX, |
| 191 | YANG_PRESENCE, |
| 192 | YANG_RANGE, |
| 193 | YANG_REFERENCE, |
| 194 | YANG_REFINE, |
| 195 | YANG_REQUIRE_INSTANCE, |
| 196 | YANG_REVISION, |
| 197 | YANG_REVISION_DATE, |
| 198 | YANG_RPC, |
| 199 | YANG_STATUS, |
| 200 | YANG_SUBMODULE, |
| 201 | YANG_TYPE, |
| 202 | YANG_TYPEDEF, |
| 203 | YANG_UNIQUE, |
| 204 | YANG_UNITS, |
| 205 | YANG_USES, |
| 206 | YANG_VALUE, |
| 207 | YANG_WHEN, |
| 208 | YANG_YANG_VERSION, |
| 209 | YANG_YIN_ELEMENT, |
| 210 | |
| 211 | YANG_SEMICOLON, |
| 212 | YANG_LEFT_BRACE, |
| 213 | YANG_RIGHT_BRACE, |
| 214 | YANG_CUSTOM |
| 215 | }; |
| 216 | |
| 217 | /* list of the YANG statements strings */ |
| 218 | extern const char *const ly_stmt_list[]; |
| 219 | #define ly_stmt2str(STMT) ly_stmt_list[STMT] |
| 220 | |
| 221 | /* list of the extensions' substatements strings */ |
| 222 | extern const char *const lyext_substmt_list[]; |
| 223 | #define lyext_substmt2str(STMT) lyext_substmt_list[STMT] |
| 224 | |
| 225 | /* list of the deviate modifications strings */ |
| 226 | extern const char *const ly_devmod_list[]; |
| 227 | #define ly_devmod2str(TYPE) ly_devmod_list[TYPE] |
| 228 | |
| 229 | /****************************************************************************** |
Michal Vasko | 1324b6c | 2018-09-07 11:16:23 +0200 | [diff] [blame] | 230 | * Generic useful functions. |
Radek Krejci | c59bc97 | 2018-09-17 16:13:06 +0200 | [diff] [blame] | 231 | *****************************************************************************/ |
Michal Vasko | 1324b6c | 2018-09-07 11:16:23 +0200 | [diff] [blame] | 232 | |
| 233 | /** |
| 234 | * @brief Wrapper for realloc() call. The only difference is that if it fails to |
| 235 | * allocate the requested memory, the original memory is freed as well. |
| 236 | * |
| 237 | * @param[in] ptr Memory to reallocate. |
| 238 | * @param[in] size New size of the memory block. |
| 239 | * |
| 240 | * @return Pointer to the new memory, NULL on error. |
| 241 | */ |
| 242 | void *ly_realloc(void *ptr, size_t size); |
| 243 | |
Radek Krejci | f345c01 | 2018-09-19 11:12:59 +0200 | [diff] [blame] | 244 | /** |
Radek Krejci | b416be6 | 2018-10-01 14:51:45 +0200 | [diff] [blame] | 245 | * @brief Get UTF8 code point of the next character in the input string. |
| 246 | * |
| 247 | * @param[in,out] input Input string to process, updated according to the processed/read data. |
| 248 | * @param[out] utf8_char UTF8 code point of the next character. |
| 249 | * @param[out] bytes_read Number of bytes used to encode the read utf8_char. |
| 250 | * @return LY_ERR value |
| 251 | */ |
| 252 | LY_ERR ly_getutf8(const char **input, unsigned int *utf8_char, size_t *bytes_read); |
| 253 | |
| 254 | /** |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 255 | * @brief mmap(2) wrapper to map input files into memory to unify parsing. |
Radek Krejci | f345c01 | 2018-09-19 11:12:59 +0200 | [diff] [blame] | 256 | * |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 257 | * The address space is allocate only for reading. |
| 258 | * |
| 259 | * @param[in] ctx libyang context for logging |
| 260 | * @param[in] fd Open file descriptor of a file to map. |
| 261 | * @param[out] length Allocated size. |
| 262 | * @param[out] addr Address where the file is mapped. |
Radek Krejci | f345c01 | 2018-09-19 11:12:59 +0200 | [diff] [blame] | 263 | * @return LY_ERR value. |
| 264 | */ |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 265 | LY_ERR ly_mmap(struct ly_ctx *ctx, int fd, size_t *length, void **addr); |
Michal Vasko | 841d1a9 | 2018-09-07 15:40:31 +0200 | [diff] [blame] | 266 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 267 | /** |
| 268 | * @brief munmap(2) wrapper to free the memory mapped by ly_mmap() |
Michal Vasko | 1324b6c | 2018-09-07 11:16:23 +0200 | [diff] [blame] | 269 | * |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 270 | * @param[in] addr Address where the input file is mapped. |
| 271 | * @param[in] length Allocated size of the address space. |
| 272 | * @return LY_ERR value. |
| 273 | */ |
| 274 | LY_ERR ly_munmap(void *addr, size_t length); |
| 275 | |
| 276 | /** |
| 277 | * @brief (Re-)Allocation of a ([sized array](@ref sizedarrays)). |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 278 | * |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 279 | * @param[in] CTX libyang context for logging. |
| 280 | * @param[in,out] ARRAY Pointer to the array to allocate/resize. |
| 281 | * @param[out] NEW_ITEM Returning pointer to the newly allocated record in the ARRAY. |
| 282 | * @param[in] RETVAL Return value for the case of error (memory allocation failure). |
Michal Vasko | 1324b6c | 2018-09-07 11:16:23 +0200 | [diff] [blame] | 283 | */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 284 | #define LYSP_ARRAY_NEW_RET(CTX, ARRAY, NEW_ITEM, RETVAL) \ |
| 285 | if (!(ARRAY)) { \ |
| 286 | ARRAY = malloc(sizeof(uint32_t) + sizeof *(ARRAY)); \ |
| 287 | *((uint32_t*)(ARRAY)) = 1; \ |
| 288 | } else { \ |
| 289 | ++(*((uint32_t*)(ARRAY))); \ |
| 290 | ARRAY = ly_realloc(ARRAY, sizeof(uint32_t) + (*((uint32_t*)(ARRAY)) * sizeof *(ARRAY))); \ |
| 291 | LY_CHECK_ERR_RET(!(ARRAY), LOGMEM(CTX), RETVAL); \ |
| 292 | } \ |
| 293 | (NEW_ITEM) = (void*)((uint32_t*)((ARRAY) + *((uint32_t*)(ARRAY)) - 1) + 1); \ |
Michal Vasko | 50b7014 | 2018-09-07 13:26:29 +0200 | [diff] [blame] | 294 | memset(NEW_ITEM, 0, sizeof *(NEW_ITEM)); |
Michal Vasko | 1324b6c | 2018-09-07 11:16:23 +0200 | [diff] [blame] | 295 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 296 | #endif /* LY_COMMON_H_ */ |