diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2010-08-09 18:52:23 -0700 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2010-08-09 18:52:23 -0700 |
commit | 722f67e407b5a1cf8aa060a40355982176870ede (patch) | |
tree | 6c381dafc98faa74d86d1bb0481fe6da077db16d /src/cstore/cstore-c.h | |
parent | 97bf9794e381317ca89d15009b6827dc6ff9d78c (diff) | |
download | vyatta-cfg-722f67e407b5a1cf8aa060a40355982176870ede.tar.gz vyatta-cfg-722f67e407b5a1cf8aa060a40355982176870ede.zip |
add function to C API
Diffstat (limited to 'src/cstore/cstore-c.h')
-rw-r--r-- | src/cstore/cstore-c.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cstore/cstore-c.h b/src/cstore/cstore-c.h index c2c5fa0..a2ad844 100644 --- a/src/cstore/cstore-c.h +++ b/src/cstore/cstore-c.h @@ -34,6 +34,10 @@ int cstore_cfg_path_exists(void *handle, const char *path_comps[], int cstore_cfg_path_deactivated(void *handle, const char *path_comps[], int num_comps, int in_active); +char *cstore_cfg_path_get_effective_value(void *handle, + const char *path_comps[], + int num_comps); + /* the following are internal APIs for the library. they can only be used * during cstore operations since they operate on "current" paths constructed * by the operations. |