diff options
| author | Eric Laurent <elaurent@google.com> | 2011-05-27 10:20:00 -0700 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-05-27 10:20:00 -0700 |
| commit | 3142a203b3c493094f59e5acda0cfa2360dd9038 (patch) | |
| tree | d2b7f5fb63d0560b5b1deea306f95479089410bf /include | |
| parent | 38d14f76048e6a14303dc81275303b63c9d7b064 (diff) | |
| parent | c3cf1a827807d11b07bce9d6941342c68808aab1 (diff) | |
| download | core-3142a203b3c493094f59e5acda0cfa2360dd9038.tar.gz core-3142a203b3c493094f59e5acda0cfa2360dd9038.tar.bz2 core-3142a203b3c493094f59e5acda0cfa2360dd9038.zip | |
Merge "Config utils improvement"
Diffstat (limited to 'include')
| -rw-r--r-- | include/cutils/config_utils.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/cutils/config_utils.h b/include/cutils/config_utils.h index f3fb370a8..2dea6f19f 100644 --- a/include/cutils/config_utils.h +++ b/include/cutils/config_utils.h @@ -54,6 +54,9 @@ const char* config_str(cnode *root, const char *name, const char *_default); /* add a named child to a config node (or modify it if it already exists) */ void config_set(cnode *root, const char *name, const char *value); +/* free a config node tree */ +void config_free(cnode *root); + #ifdef __cplusplus } #endif |
