Skip to content
Snippets Groups Projects
Commit e61408c4 authored by Jan Kadlec's avatar Jan Kadlec
Browse files

new_node: Documented rr_data structure in node.h.

parent bdb3ac93
Branches
Tags
No related merge requests found
......@@ -91,10 +91,11 @@ struct knot_node {
typedef struct knot_node knot_node_t;
/*!< \brief Structure storing RR data. */
struct rr_data {
uint16_t type;
knot_rrs_t rrs;
knot_node_t **additional;
uint16_t type; /*!< \brief RR type of data. */
knot_rrs_t rrs; /*!< \brief Data of given type. */
knot_node_t **additional; /*!< \brief Additional nodes with glues. */
};
/*----------------------------------------------------------------------------*/
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment