Author: julianfoad
Date: Wed Jun 23 11:11:25 2010
New Revision: 957157
URL: http://svn.apache.org/viewvc?rev=957157&view=rev
Log:
* subversion/include/svn_io.h
(svn_io_file_name_get): Document that the filename is UTF8-encoded, and
that it may be NULL. Move this declaration out of the 'Version/format
files' documentation group.
Modified:
subversion/trunk/subversion/include/svn_io.h
Modified: subversion/trunk/subversion/include/svn_io.h
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_io.h?rev=957157&r1=957156&r2=957157&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_io.h (original)
+++ subversion/trunk/subversion/include/svn_io.h Wed Jun 23 11:11:25 2010
@@ -1893,6 +1893,16 @@ svn_io_dir_read(apr_finfo_t *finfo,
apr_dir_t *thedir,
apr_pool_t *pool);
+/** Wrapper for apr_file_name_get(). @a *filename is utf8-encoded.
+ *
+ * @note The file name may be NULL.
+ *
+ * @since New in 1.7. */
+svn_error_t *
+svn_io_file_name_get(const char **filename,
+ apr_file_t *file,
+ apr_pool_t *pool);
+
/** Version/format files.
@@ -1921,14 +1931,6 @@ svn_io_write_version_file(const char *pa
int version,
apr_pool_t *pool);
-/** Wrapper for apr_file_name_get().
- *
- * @since New in 1.7. */
-svn_error_t *
-svn_io_file_name_get(const char **filename,
- apr_file_t *file,
- apr_pool_t *pool);
-
/** @} */
#ifdef __cplusplus