You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2010/06/30 15:28:09 UTC

svn commit: r959301 - /subversion/trunk/subversion/libsvn_wc/wc.h

Author: julianfoad
Date: Wed Jun 30 13:28:08 2010
New Revision: 959301

URL: http://svn.apache.org/viewvc?rev=959301&view=rev
Log:
Add doc strings.

* subversion/libsvn_wc/wc.h
  (svn_wc__internal_is_replaced, svn_wc__internal_node_get_url,
   svn_wc__internal_is_file_external, svn_wc__internal_node_get_schedule):
    Add doc strings simply referring to the equivalent external functions.

Modified:
    subversion/trunk/subversion/libsvn_wc/wc.h

Modified: subversion/trunk/subversion/libsvn_wc/wc.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/wc.h?rev=959301&r1=959300&r2=959301&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc.h (original)
+++ subversion/trunk/subversion/libsvn_wc/wc.h Wed Jun 30 13:28:08 2010
@@ -572,6 +572,7 @@ svn_wc__internal_remove_from_revision_co
                                               apr_pool_t *scratch_pool);
 
 
+/* Library-internal version of svn_wc__node_is_replaced(). */
 svn_error_t *
 svn_wc__internal_is_replaced(svn_boolean_t *replaced,
                              svn_wc__db_t *db,
@@ -579,6 +580,7 @@ svn_wc__internal_is_replaced(svn_boolean
                              apr_pool_t *scratch_pool);
 
 
+/* Library-internal version of svn_wc__node_get_url(). */
 svn_error_t *
 svn_wc__internal_node_get_url(const char **url,
                               svn_wc__db_t *db,
@@ -587,12 +589,14 @@ svn_wc__internal_node_get_url(const char
                               apr_pool_t *scratch_pool);
 
 
+/* Library-internal version of svn_wc__node_is_file_external(). */
 svn_error_t *
 svn_wc__internal_is_file_external(svn_boolean_t *file_external,
                                   svn_wc__db_t *db,
                                   const char *local_abspath,
                                   apr_pool_t *scratch_pool);
 
+/* Library-internal version of svn_wc__node_get_schedule(). */
 svn_error_t *
 svn_wc__internal_node_get_schedule(svn_wc_schedule_t *schedule,
                                    svn_boolean_t *copied,