]> Kevux Git Server - fll/commitdiff
Cleanup: Further clarify the directory recrusion action callback parameters.
authorKevin Day <Kevin@kevux.org>
Sun, 9 Mar 2025 23:39:30 +0000 (18:39 -0500)
committerKevin Day <Kevin@kevux.org>
Sun, 9 Mar 2025 23:41:30 +0000 (18:41 -0500)
level_0/f_directory/c/directory/recurse_do.h

index de95672306ce8dc409a999f470371f033369a8fa..4132f4d0abaca3a03465df7bc396c9fb9d6f57e6 100644 (file)
@@ -26,9 +26,9 @@ extern "C" {
  *   - F_continue:                      Skip to the next iteration in the current loop.
  *   - F_done:                          Immedately return as success but do nothing else in this recursion.
  *
- * The action parameters are:
+ * The action() and handle() parameters are:
  *   - recurse: Must be of type f_directory_recurse_do_t and represents this data. Must not be NULL.
- *   - name:    The name of the file or directory the action is being performed on (does not have the parent directory path) (may be empty at the top level).
+ *   - name:    The name of the file or directory the action is being performed on (does not have the parent directory path) (may be empty at the top level) (may not be a full path).
  *   - flag:    A flag representing the particular action being performed.
  *
  * The handle() callback provides a callback identical to the handle() except that it is for handling exceptions in place of state.handle().