David Sedlák | b1ce3f8 | 2019-06-05 14:37:26 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file parser_yin.h |
| 3 | * @author David Sedlák <xsedla1d@stud.fit.vutbr.cz> |
David Sedlák | c5b2084 | 2019-08-13 10:18:31 +0200 | [diff] [blame] | 4 | * @brief YIN parser header file. |
David Sedlák | b1ce3f8 | 2019-06-05 14:37:26 +0200 | [diff] [blame] | 5 | * |
| 6 | * Copyright (c) 2015 - 2019 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 | */ |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 14 | |
| 15 | #ifndef LY_PARSER_YIN_H_ |
| 16 | #define LY_PARSER_YIN_H_ |
| 17 | |
| 18 | #include <stdio.h> |
David Sedlák | b1ce3f8 | 2019-06-05 14:37:26 +0200 | [diff] [blame] | 19 | #include <stdlib.h> |
| 20 | |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 21 | #include "log.h" |
| 22 | #include "xml.h" |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 23 | |
David Sedlák | f625118 | 2019-06-06 10:22:13 +0200 | [diff] [blame] | 24 | /* list of yin attribute strings */ |
| 25 | extern const char *const yin_attr_list[]; |
| 26 | #define yin_attr2str(STMT) yin_attr_list[STMT] |
| 27 | |
David Sedlák | 2b214ac | 2019-06-06 16:11:03 +0200 | [diff] [blame] | 28 | #define YIN_NS_URI "urn:ietf:params:xml:ns:yang:yin:1" |
David Sedlák | d6e5689 | 2019-07-01 15:40:24 +0200 | [diff] [blame] | 29 | #define name2fullname(name, prefix_len) (prefix_len != 0 ? name - (prefix_len + 1) : name) |
David Sedlák | f250ecf | 2019-07-01 11:02:05 +0200 | [diff] [blame] | 30 | #define namelen2fulllen(name_len, prefix_len) (prefix_len != 0 ? name_len + prefix_len + 1 : name_len) |
David Sedlák | 2b214ac | 2019-06-06 16:11:03 +0200 | [diff] [blame] | 31 | |
David Sedlák | 26ea143 | 2019-08-14 13:42:23 +0200 | [diff] [blame] | 32 | #define VALID_VALS1 " Only valid value is \"%s\"." |
| 33 | #define VALID_VALS2 " Valid values are \"%s\" and \"%s\"." |
| 34 | #define VALID_VALS3 " Valid values are \"%s\", \"%s\" and \"%s\"." |
| 35 | #define VALID_VALS4 " Valid values are \"%s\", \"%s\", \"%s\" and \"%s\"." |
| 36 | |
David Sedlák | 4ffcec8 | 2019-07-25 15:10:21 +0200 | [diff] [blame] | 37 | /* shortcut to determin if keyword can in general be subelement of deviation regardles of it's type */ |
| 38 | #define isdevsub(kw) (kw == YANG_CONFIG || kw == YANG_DEFAULT || kw == YANG_MANDATORY || \ |
| 39 | kw == YANG_MAX_ELEMENTS || kw == YANG_MIN_ELEMENTS || \ |
| 40 | kw == YANG_MUST || kw == YANG_TYPE || kw == YANG_UNIQUE || \ |
| 41 | kw == YANG_UNITS || kw == YANG_CUSTOM) |
| 42 | |
David Sedlák | c5b2084 | 2019-08-13 10:18:31 +0200 | [diff] [blame] | 43 | enum yin_argument { |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 44 | YIN_ARG_UNKNOWN = 0, /**< parsed argument can not be matched with any supported yin argument keyword */ |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 45 | YIN_ARG_NAME, /**< argument name */ |
| 46 | YIN_ARG_TARGET_NODE, /**< argument target-node */ |
| 47 | YIN_ARG_MODULE, /**< argument module */ |
| 48 | YIN_ARG_VALUE, /**< argument value */ |
| 49 | YIN_ARG_TEXT, /**< argument text */ |
| 50 | YIN_ARG_CONDITION, /**< argument condition */ |
| 51 | YIN_ARG_URI, /**< argument uri */ |
| 52 | YIN_ARG_DATE, /**< argument data */ |
| 53 | YIN_ARG_TAG, /**< argument tag */ |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 54 | YIN_ARG_NONE, /**< empty (special value) */ |
David Sedlák | 7ff55a9 | 2019-06-17 11:11:41 +0200 | [diff] [blame] | 55 | }; |
| 56 | |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 57 | /** |
| 58 | * @brief structure to store instance of xml attribute |
| 59 | */ |
David Sedlák | 7ff55a9 | 2019-06-17 11:11:41 +0200 | [diff] [blame] | 60 | struct yin_arg_record { |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 61 | const char *prefix; /**< start of prefix */ |
| 62 | size_t prefix_len; /**< length of prefix */ |
| 63 | const char *name; /**< start of name */ |
| 64 | size_t name_len; /**< length of name */ |
| 65 | char *content; /**< start of content */ |
| 66 | size_t content_len; /**< length of content */ |
| 67 | int dynamic_content; /**< is set to 1 iff content is dynamically allocated 0 otherwise */ |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 68 | }; |
| 69 | |
David Sedlák | c5b2084 | 2019-08-13 10:18:31 +0200 | [diff] [blame] | 70 | /* flags to set constraints of subelements */ |
David Sedlák | 3ffbc52 | 2019-07-02 17:49:28 +0200 | [diff] [blame] | 71 | #define YIN_SUBELEM_MANDATORY 0x01 /**< is set when subelement is mandatory */ |
| 72 | #define YIN_SUBELEM_UNIQUE 0x02 /**< is set when subelement is unique */ |
David Sedlák | e1a3030 | 2019-07-10 13:49:38 +0200 | [diff] [blame] | 73 | #define YIN_SUBELEM_FIRST 0x04 /**< is set when subelement is actually yang argument mapped to yin element */ |
David Sedlák | 0c2bab9 | 2019-07-22 15:33:19 +0200 | [diff] [blame] | 74 | #define YIN_SUBELEM_VER2 0x08 /**< subelemnt is allowed only in modules with version at least 2 (YANG 1.1) */ |
David Sedlák | 21f87cd | 2019-07-03 16:53:23 +0200 | [diff] [blame] | 75 | |
| 76 | #define YIN_SUBELEM_PARSED 0x80 /**< is set during parsing when given subelement is encountered for the first |
David Sedlák | 3ffbc52 | 2019-07-02 17:49:28 +0200 | [diff] [blame] | 77 | time to simply check validity of given constraints */ |
| 78 | |
| 79 | struct yin_subelement { |
| 80 | enum yang_keyword type; /**< type of keyword */ |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 81 | void *dest; /**< meta infromation passed to responsible function (mostly information about where parsed subelement should be stored) */ |
David Sedlák | c5b2084 | 2019-08-13 10:18:31 +0200 | [diff] [blame] | 82 | uint8_t flags; /**< describes constraints of subelement can be set to YIN_SUBELEM_MANDATORY, YIN_SUBELEM_UNIQUE, YIN_SUBELEM_FIRST and YIN_SUBELEM_VER2 */ |
David Sedlák | 3ffbc52 | 2019-07-02 17:49:28 +0200 | [diff] [blame] | 83 | }; |
| 84 | |
David Sedlák | b4e4456 | 2019-07-04 15:42:12 +0200 | [diff] [blame] | 85 | /* Meta information passed to yin_parse_argument function, |
| 86 | holds information about where content of argument element will be stored. */ |
David Sedlák | 3ffbc52 | 2019-07-02 17:49:28 +0200 | [diff] [blame] | 87 | struct yin_argument_meta { |
David Sedlák | b4e4456 | 2019-07-04 15:42:12 +0200 | [diff] [blame] | 88 | uint16_t *flags; /**< Argument flags */ |
| 89 | const char **argument; /**< Argument value */ |
David Sedlák | 3ffbc52 | 2019-07-02 17:49:28 +0200 | [diff] [blame] | 90 | }; |
| 91 | |
David Sedlák | 6881b51 | 2019-08-13 12:52:00 +0200 | [diff] [blame] | 92 | /** |
| 93 | * @brief Meta information passed to functions working with tree_schema, |
| 94 | * that require additional information about parent node. |
| 95 | */ |
David Sedlák | 8a83bbb | 2019-07-18 14:46:00 +0200 | [diff] [blame] | 96 | struct tree_node_meta { |
| 97 | struct lysp_node *parent; /**< parent node */ |
| 98 | struct lysp_node **siblings; /**< linked list of siblings */ |
| 99 | }; |
| 100 | |
David Sedlák | 6881b51 | 2019-08-13 12:52:00 +0200 | [diff] [blame] | 101 | /** |
| 102 | * @brief Meta information passed to yin_parse_import function. |
| 103 | */ |
David Sedlák | 298ff6d | 2019-07-26 14:29:03 +0200 | [diff] [blame] | 104 | struct import_meta { |
| 105 | const char *prefix; /**< module prefix. */ |
| 106 | struct lysp_import **imports; /**< imports to add to. */ |
| 107 | }; |
| 108 | |
David Sedlák | 6881b51 | 2019-08-13 12:52:00 +0200 | [diff] [blame] | 109 | /** |
| 110 | * @brief Meta information passed to yin_parse_include function. |
| 111 | */ |
| 112 | struct include_meta { |
| 113 | const char *name; /**< Module/submodule name. */ |
| 114 | struct lysp_include **includes; /**< [Sized array](@ref sizedarrays) of parsed includes to add to. */ |
| 115 | }; |
| 116 | |
| 117 | /** |
David Sedlák | 81497a3 | 2019-08-13 16:56:26 +0200 | [diff] [blame] | 118 | * @brief Meta information passed to yin_parse_inout function. |
David Sedlák | 6881b51 | 2019-08-13 12:52:00 +0200 | [diff] [blame] | 119 | */ |
| 120 | struct inout_meta { |
| 121 | struct lysp_node *parent; /**< Parent node. */ |
| 122 | struct lysp_action_inout *inout_p; /**< inout_p Input/output pointer to write to. */ |
| 123 | }; |
| 124 | |
| 125 | /** |
| 126 | * @brief Meta information passed to yin_parse_minmax function. |
| 127 | */ |
David Sedlák | 4ffcec8 | 2019-07-25 15:10:21 +0200 | [diff] [blame] | 128 | struct minmax_dev_meta { |
David Sedlák | 6881b51 | 2019-08-13 12:52:00 +0200 | [diff] [blame] | 129 | uint32_t *lim; /**< min/max value to write to. */ |
| 130 | uint16_t *flags; /**< min/max flags to write to. */ |
| 131 | struct lysp_ext_instance **exts; /**< extension instances to add to. */ |
David Sedlák | 4ffcec8 | 2019-07-25 15:10:21 +0200 | [diff] [blame] | 132 | }; |
| 133 | |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 134 | /** |
| 135 | * @brief Match argument name. |
| 136 | * |
| 137 | * @param[in] name String representing name. |
| 138 | * @param[in] len Lenght of the name. |
| 139 | * |
David Sedlák | b1ce3f8 | 2019-06-05 14:37:26 +0200 | [diff] [blame] | 140 | * @return YIN_ARGUMENT value. |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 141 | */ |
David Sedlák | c5b2084 | 2019-08-13 10:18:31 +0200 | [diff] [blame] | 142 | enum yin_argument yin_match_argument_name(const char *name, size_t len); |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 143 | |
| 144 | /** |
David Sedlák | 555c720 | 2019-07-04 12:14:12 +0200 | [diff] [blame] | 145 | * @brief Generic function for content parsing |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 146 | * |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 147 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
David Sedlák | 555c720 | 2019-07-04 12:14:12 +0200 | [diff] [blame] | 148 | * @param[in] subelem_info array of valid subelement types and meta information, |
| 149 | * array must be ordered by subelem_info->type in ascending order. |
| 150 | * @param[in] subelem_info_size Size of subelem_info array. |
| 151 | * @param[in,out] data Data to read from, always moved to currently handled character. |
| 152 | * @param[in] current_element Type of current element. |
David Sedlák | c5b2084 | 2019-08-13 10:18:31 +0200 | [diff] [blame] | 153 | * @param[out] text_content Where the text content of element should be stored if any. Text content is ignored if not set to NULL. |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 154 | * @param[in,out] exts Extension instance to add to. Can be se to null if element cannot have extension as subelements. |
David Sedlák | c5b2084 | 2019-08-13 10:18:31 +0200 | [diff] [blame] | 155 | * |
David Sedlák | 2b214ac | 2019-06-06 16:11:03 +0200 | [diff] [blame] | 156 | * @return LY_ERR values. |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 157 | */ |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 158 | LY_ERR yin_parse_content(struct yin_parser_ctx *ctx, struct yin_subelement *subelem_info, signed char subelem_info_size, |
David Sedlák | 555c720 | 2019-07-04 12:14:12 +0200 | [diff] [blame] | 159 | const char **data, enum yang_keyword current_element, const char **text_content, |
| 160 | struct lysp_ext_instance **exts); |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 161 | |
David Sedlák | d9d3a31 | 2019-06-04 09:47:10 +0200 | [diff] [blame] | 162 | /** |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 163 | * @brief Check that val is valid UTF8 character sequence of val_type. |
| 164 | * Doesn't check empty string, only character validity. |
| 165 | * |
| 166 | * @param[in] ctx Yin parser context for logging. |
| 167 | * @param[in] val_type Type of the input string to select method of checking character validity. |
| 168 | * @param[in] val Input to validate. |
| 169 | * @param[in] len Length of input. |
| 170 | * |
| 171 | * @return LY_ERR values. |
| 172 | */ |
| 173 | LY_ERR yin_validate_value(struct yin_parser_ctx *ctx, enum yang_arg val_type, char *val, size_t len); |
| 174 | |
| 175 | /** |
David Sedlák | b4e4456 | 2019-07-04 15:42:12 +0200 | [diff] [blame] | 176 | * @brief Match yang keyword from yin data. |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 177 | * |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 178 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
David Sedlák | b4e4456 | 2019-07-04 15:42:12 +0200 | [diff] [blame] | 179 | * @param[in] name Start of keyword name |
David Sedlák | 8f7a117 | 2019-06-20 14:42:18 +0200 | [diff] [blame] | 180 | * @param[in] name_len Lenght of keyword name. |
| 181 | * @param[in] prefix Start of keyword prefix. |
David Sedlák | c5b2084 | 2019-08-13 10:18:31 +0200 | [diff] [blame] | 182 | * @param[in] prefix_len Lenght of prefix. |
David Sedlák | c1771b1 | 2019-07-10 15:55:46 +0200 | [diff] [blame] | 183 | * @param[in] parrent Identification of parrent element, use YANG_NONE for elements without parrent. |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 184 | * |
| 185 | * @return yang_keyword values. |
| 186 | */ |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 187 | enum yang_keyword yin_match_keyword(struct yin_parser_ctx *ctx, const char *name, size_t name_len, |
David Sedlák | c1771b1 | 2019-07-10 15:55:46 +0200 | [diff] [blame] | 188 | const char *prefix, size_t prefix_len, enum yang_keyword parrent); |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 189 | |
David Sedlák | b6e6597 | 2019-06-19 10:44:13 +0200 | [diff] [blame] | 190 | /** |
David Sedlák | c5b2084 | 2019-08-13 10:18:31 +0200 | [diff] [blame] | 191 | * @brief Load all attributes of element into ([sized array](@ref sizedarrays)). Caller is suposed to free the array. |
David Sedlák | 8f7a117 | 2019-06-20 14:42:18 +0200 | [diff] [blame] | 192 | * |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 193 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
| 194 | * @param[in,out] data Data to read from, always moved to currently handled character. |
David Sedlák | bba38e5 | 2019-07-09 15:20:01 +0200 | [diff] [blame] | 195 | * @param[out] attrs ([Sized array](@ref sizedarrays)) of attributes. |
David Sedlák | 8f7a117 | 2019-06-20 14:42:18 +0200 | [diff] [blame] | 196 | * |
| 197 | * @return LY_ERR values. |
| 198 | */ |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 199 | LY_ERR yin_load_attributes(struct yin_parser_ctx *ctx, const char **data, struct yin_arg_record **attrs); |
David Sedlák | b6e6597 | 2019-06-19 10:44:13 +0200 | [diff] [blame] | 200 | |
David Sedlák | 554e36d | 2019-06-20 16:00:04 +0200 | [diff] [blame] | 201 | /** |
David Sedlák | b1a7835 | 2019-06-28 16:16:29 +0200 | [diff] [blame] | 202 | * @brief Parse instance of extension. |
| 203 | * |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 204 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
David Sedlák | bba38e5 | 2019-07-09 15:20:01 +0200 | [diff] [blame] | 205 | * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of extension instance. |
David Sedlák | b1a7835 | 2019-06-28 16:16:29 +0200 | [diff] [blame] | 206 | * @param[in,out] data Data to read from, always moved to currently handled character. |
| 207 | * @param[in] ext_name Name of the extension element. |
| 208 | * @param[in] ext_name_len Length of extension name. |
David Sedlák | b4e4456 | 2019-07-04 15:42:12 +0200 | [diff] [blame] | 209 | * @param[in] subelem Type of the keyword this extension instance is a subelement of. |
| 210 | * @param[in] subelem_index Index of the keyword instance this extension instance is a subelement of |
| 211 | * @param[in,out] exts Extension instance to add to. |
David Sedlák | b1a7835 | 2019-06-28 16:16:29 +0200 | [diff] [blame] | 212 | * |
| 213 | * @return LY_ERR values. |
| 214 | */ |
David Sedlák | 1f90d25 | 2019-07-10 17:09:32 +0200 | [diff] [blame] | 215 | LY_ERR yin_parse_extension_instance(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, |
David Sedlák | 619db94 | 2019-07-03 14:47:30 +0200 | [diff] [blame] | 216 | const char *ext_name, int ext_name_len, LYEXT_SUBSTMT subelem, |
| 217 | uint32_t subelem_index, struct lysp_ext_instance **exts); |
David Sedlák | b1a7835 | 2019-06-28 16:16:29 +0200 | [diff] [blame] | 218 | |
| 219 | /** |
| 220 | * @brief Parse yin element into generic structure. |
| 221 | * |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 222 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
David Sedlák | b1a7835 | 2019-06-28 16:16:29 +0200 | [diff] [blame] | 223 | * @param[in] name Name of element. |
| 224 | * @param[in] name_len Length of elements Name. |
| 225 | * @param[in,out] data Data to read from, always moved to currently handled character. |
| 226 | * @param[out] element Where the element structure should be stored. |
| 227 | * |
| 228 | * @return LY_ERR values. |
| 229 | */ |
David Sedlák | 4ffcec8 | 2019-07-25 15:10:21 +0200 | [diff] [blame] | 230 | LY_ERR yin_parse_element_generic(struct yin_parser_ctx *ctx, const char *name, size_t name_len, const char **data, |
| 231 | struct lysp_stmt **element); |
David Sedlák | b1a7835 | 2019-06-28 16:16:29 +0200 | [diff] [blame] | 232 | |
David Sedlák | 4f03b93 | 2019-07-26 13:01:47 +0200 | [diff] [blame] | 233 | /** |
David Sedlák | 298ff6d | 2019-07-26 14:29:03 +0200 | [diff] [blame] | 234 | * @brief Parse module element. |
David Sedlák | 4f03b93 | 2019-07-26 13:01:47 +0200 | [diff] [blame] | 235 | * |
| 236 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
| 237 | * @param[in] mod_attrs Attributes of module element. |
| 238 | * @param[in,out] data Data to read from. |
| 239 | * @param[out] mod Parsed module structure. |
| 240 | * |
| 241 | * @return LY_ERR values. |
| 242 | */ |
David Sedlák | 298ff6d | 2019-07-26 14:29:03 +0200 | [diff] [blame] | 243 | LY_ERR yin_parse_mod(struct yin_parser_ctx *ctx, struct yin_arg_record *mod_attrs, |
| 244 | const char **data, struct lysp_module *mod); |
David Sedlák | 4f03b93 | 2019-07-26 13:01:47 +0200 | [diff] [blame] | 245 | |
| 246 | |
| 247 | /** |
David Sedlák | 298ff6d | 2019-07-26 14:29:03 +0200 | [diff] [blame] | 248 | * @brief Parse submodule element. |
| 249 | * |
| 250 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
| 251 | * @param[in] mod_attrs Attributes of module element. |
| 252 | * @param[in,out] data Data to read from. |
| 253 | * @param[out] mod Parsed module structure. |
| 254 | * |
| 255 | * @return LY_ERR values. |
| 256 | */ |
| 257 | LY_ERR yin_parse_submod(struct yin_parser_ctx *ctx, struct yin_arg_record *mod_attrs, |
| 258 | const char **data, struct lysp_submodule *submod); |
| 259 | |
| 260 | /** |
David Sedlák | 4f03b93 | 2019-07-26 13:01:47 +0200 | [diff] [blame] | 261 | * @brief free argument record, content loaded from lyxml_get_string() can be |
| 262 | * dynamically allocated in some cases so it must be also freed. |
| 263 | * |
David Sedlák | c5b2084 | 2019-08-13 10:18:31 +0200 | [diff] [blame] | 264 | * @param ctx unused just to fulfill signature of callback for FREE_ARRAY. |
| 265 | * @param[in] record Record to free. |
David Sedlák | 4f03b93 | 2019-07-26 13:01:47 +0200 | [diff] [blame] | 266 | */ |
| 267 | void free_arg_rec(struct yin_parser_ctx *ctx, struct yin_arg_record *record); |
| 268 | |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 269 | #endif /* LY_PARSER_YIN_H_*/ |