GME  13
Defines | Typedefs | Enumerations | Functions
svn_hash.h File Reference

Dumping and reading hash tables to/from files. More...

Go to the source code of this file.

Defines

#define SVN_KEYLINE_MAXLEN   100
#define SVN_HASH_TERMINATOR   "END"
#define svn_hash_gets(ht, key)   apr_hash_get(ht, key, APR_HASH_KEY_STRING)
#define svn_hash_sets(ht, key, val)   apr_hash_set(ht, key, APR_HASH_KEY_STRING, val)

Typedefs

typedef svn_error_t *(* svn_hash_diff_func_t )(const void *key, apr_ssize_t klen, enum svn_hash_diff_key_status status, void *baton)

Enumerations

enum  svn_hash_diff_key_status { svn_hash_diff_key_both, svn_hash_diff_key_a, svn_hash_diff_key_b }

Functions

svn_error_tsvn_hash_read2 (apr_hash_t *hash, svn_stream_t *stream, const char *terminator, apr_pool_t *pool)
svn_error_tsvn_hash_write2 (apr_hash_t *hash, svn_stream_t *stream, const char *terminator, apr_pool_t *pool)
svn_error_tsvn_hash_read_incremental (apr_hash_t *hash, svn_stream_t *stream, const char *terminator, apr_pool_t *pool)
svn_error_tsvn_hash_write_incremental (apr_hash_t *hash, apr_hash_t *oldhash, svn_stream_t *stream, const char *terminator, apr_pool_t *pool)
SVN_DEPRECATED svn_error_tsvn_hash_read (apr_hash_t *hash, apr_file_t *srcfile, apr_pool_t *pool)
SVN_DEPRECATED svn_error_tsvn_hash_write (apr_hash_t *hash, apr_file_t *destfile, apr_pool_t *pool)
svn_error_tsvn_hash_diff (apr_hash_t *hash_a, apr_hash_t *hash_b, svn_hash_diff_func_t diff_func, void *diff_func_baton, apr_pool_t *pool)
svn_error_tsvn_hash_keys (apr_array_header_t **array, apr_hash_t *hash, apr_pool_t *pool)
svn_error_tsvn_hash_from_cstring_keys (apr_hash_t **hash, const apr_array_header_t *keys, apr_pool_t *pool)

Detailed Description

Dumping and reading hash tables to/from files.

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ====================================================================

Definition in file svn_hash.h.


Define Documentation

#define SVN_KEYLINE_MAXLEN   100

The longest the "K <number>" line can be in one of our hashdump files.

Definition at line 47 of file svn_hash.h.