diff options
author | Lorry Tar Creator <lorry-tar-importer@lorry> | 2017-08-05 16:22:51 +0000 |
---|---|---|
committer | Lorry Tar Creator <lorry-tar-importer@lorry> | 2017-08-05 16:22:51 +0000 |
commit | cf46733632c7279a9fd0fe6ce26f9185a4ae82a9 (patch) | |
tree | da27775a2161723ef342e91af41a8b51fedef405 /subversion/include/svn_path.h | |
parent | bb0ef45f7c46b0ae221b26265ef98a768c33f820 (diff) | |
download | subversion-tarball-master.tar.gz |
subversion-1.9.7HEADsubversion-1.9.7master
Diffstat (limited to 'subversion/include/svn_path.h')
-rw-r--r-- | subversion/include/svn_path.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/subversion/include/svn_path.h b/subversion/include/svn_path.h index 3478003..20452c1 100644 --- a/subversion/include/svn_path.h +++ b/subversion/include/svn_path.h @@ -114,7 +114,7 @@ char * svn_path_join(const char *base, const char *component, apr_pool_t *pool); /** Join multiple components onto a @a base path, allocated in @a pool. The - * components are terminated by a @c NULL. + * components are terminated by a @c SVN_VA_NULL. * * If any component is the empty string, it will be ignored. * @@ -131,7 +131,9 @@ svn_path_join(const char *base, const char *component, apr_pool_t *pool); */ SVN_DEPRECATED char * -svn_path_join_many(apr_pool_t *pool, const char *base, ...); +svn_path_join_many(apr_pool_t *pool, + const char *base, + ...) SVN_NEEDS_SENTINEL_NULL; /** Get the basename of the specified canonicalized @a path. The @@ -716,10 +718,10 @@ svn_path_resolve_repos_relative_url(const char **absolute_url, const char *repos_root_url, apr_pool_t *pool); -/* Return a copy of @a path, allocated from @a pool, for which control - * characters have been escaped using the form \NNN (where NNN is the +/** Return a copy of @a path, allocated from @a pool, for which control + * characters have been escaped using the form "\NNN" (where NNN is the * octal representation of the byte's ordinal value). - * + * * @since New in 1.8. */ const char * svn_path_illegal_path_escape(const char *path, apr_pool_t *pool); |