diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2017-01-29 15:37:23 +0000 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2017-01-29 15:37:23 +0000 |
commit | 4150bf0c6aa6b2bdabb43a32a3e127ae3e50507d (patch) | |
tree | eaf66f732f52d84a5daf3f6736b489c3a755a620 /include | |
parent | 25ce65a8a4454fca6a4206a828caeb74d0599d86 (diff) | |
parent | d6321a22f8c957523e7acbf6c57f5730b55ac378 (diff) | |
download | ouroboros-4150bf0c6aa6b2bdabb43a32a3e127ae3e50507d.tar.gz ouroboros-4150bf0c6aa6b2bdabb43a32a3e127ae3e50507d.zip |
Merged in dstaesse/ouroboros/be-rib (pull request #354)
lib: Add function to get children of node in RIB
Diffstat (limited to 'include')
-rw-r--r-- | include/ouroboros/rib.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/ouroboros/rib.h b/include/ouroboros/rib.h index 5acf0330..1d0661a7 100644 --- a/include/ouroboros/rib.h +++ b/include/ouroboros/rib.h @@ -52,6 +52,9 @@ int rib_put(const char * path, bool rib_has(const char * path); +ssize_t rib_children(const char * path, + char *** children); + char * rib_path_append(char * path, const char * name); |