Defines | |
| #define | SVN_HASH_TERMINATOR "END" |
| |
Functions | |
| svn_error_t * | svn_hash_read2 (apr_hash_t *hash, svn_stream_t *stream, const char *terminator, apr_pool_t *pool) |
| |
| svn_error_t * | svn_hash_write2 (apr_hash_t *hash, svn_stream_t *stream, const char *terminator, apr_pool_t *pool) |
| |
| svn_error_t * | svn_hash_read_incremental (apr_hash_t *hash, svn_stream_t *stream, const char *terminator, apr_pool_t *pool) |
| |
| svn_error_t * | svn_hash_write_incremental (apr_hash_t *hash, apr_hash_t *oldhash, svn_stream_t *stream, const char *terminator, apr_pool_t *pool) |
| |
| svn_error_t * | svn_hash_read (apr_hash_t *hash, apr_file_t *srcfile, apr_pool_t *pool) |
| svn_error_t * | svn_hash_write (apr_hash_t *hash, apr_file_t *destfile, apr_pool_t *pool) |
|
|
The conventional terminator for hash dumps. Definition at line 56 of file svn_hash.h. |
|
||||||||||||||||
|
This function behaves like svn_hash_read2, but it only works on an apr_file_t input, empty files are accepted, and the hash is expected to be terminated with a line containing "END" or "PROPS-END". |
|
||||||||||||||||||||
|
Read a hash table from stream, storing the resultants names and values in hash. Use a pool for all allocations. hash will have |
|
||||||||||||||||||||
|
Similar to |
|
||||||||||||||||
|
This function behaves like svn_hash_write2, but it only works on an apr_file_t output, and the terminator is always "END". |
|
||||||||||||||||||||
|
Dump hash to stream. Use pool for all allocations. hash has |
|
||||||||||||||||||||||||
|
Similar to |
1.2.18