Changeset 7b87e1d in mainline for uspace/lib/sif/private/sif.h
- Timestamp:
- 2018-08-02T11:39:22Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 233a3a06
- Parents:
- 1c398db2
- git-author:
- Jiri Svoboda <jiri@…> (2018-08-01 17:38:51)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-08-02 11:39:22)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/sif/private/sif.h
r1c398db2 r7b87e1d 39 39 40 40 #include <adt/list.h> 41 #include <adt/odict.h> 41 42 #include <stdio.h> 42 43 … … 54 55 }; 55 56 57 /** SIF attribute */ 58 typedef struct { 59 /** Node to which this attribute belongs */ 60 struct sif_node *node; 61 /** Link to @c node->attrs */ 62 odlink_t lattrs; 63 /** Attribute name */ 64 char *aname; 65 /** Attribute value */ 66 char *avalue; 67 } sif_attr_t; 68 56 69 /** SIF node */ 57 70 struct sif_node { … … 62 75 /** Node type */ 63 76 char *ntype; 77 /** Attributes (of sif_attr_t) */ 78 odict_t attrs; 64 79 /** Child nodes */ 65 80 list_t children;
Note:
See TracChangeset
for help on using the changeset viewer.