TianoCore EDK2 master
Loading...
Searching...
No Matches
redpath.h
Go to the documentation of this file.
1
18#ifndef LIBREDFISH_REDPATH_H_
19#define LIBREDFISH_REDPATH_H_
20
22
23#include <jansson.h>
24
25typedef struct _redPathNode {
26 bool isRoot;
27 bool isIndex;
28
29 char *version;
30 char *nodeName;
31 size_t index;
32 char *op;
33 char *propName;
34 char *value;
35
36 struct _redPathNode *next;
38
40parseRedPath (
41 const char *path
42 );
43
44void
45cleanupRedPath (
46 redPathNode *node
47 );
48
49#endif