diff options
Diffstat (limited to 'subversion/libsvn_subr/config_impl.h')
-rw-r--r-- | subversion/libsvn_subr/config_impl.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/subversion/libsvn_subr/config_impl.h b/subversion/libsvn_subr/config_impl.h index 529d7d5d1aca..899dd2a65d96 100644 --- a/subversion/libsvn_subr/config_impl.h +++ b/subversion/libsvn_subr/config_impl.h @@ -76,18 +76,18 @@ struct svn_config_t svn_boolean_t read_only; }; +/* The default add-value constructor callback, used by the default + config parser that populates an svn_config_t. */ +svn_error_t *svn_config__default_add_value_fn( + void *baton, svn_stringbuf_t *section, + svn_stringbuf_t *option, svn_stringbuf_t *value); + /* Read sections and options from a file. */ svn_error_t *svn_config__parse_file(svn_config_t *cfg, const char *file, svn_boolean_t must_exist, apr_pool_t *pool); -/* Read sections and options from a stream. */ -svn_error_t *svn_config__parse_stream(svn_config_t *cfg, - svn_stream_t *stream, - apr_pool_t *result_pool, - apr_pool_t *scratch_pool); - /* The name of the magic [DEFAULT] section. */ #define SVN_CONFIG__DEFAULT_SECTION "DEFAULT" |