From 14908fe931af451e99640e187ff65011307fd315 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sun, 9 Mar 2025 18:39:30 -0500 Subject: [PATCH] Cleanup: Further clarify the directory recrusion action callback parameters. --- level_0/f_directory/c/directory/recurse_do.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/level_0/f_directory/c/directory/recurse_do.h b/level_0/f_directory/c/directory/recurse_do.h index de95672..4132f4d 100644 --- a/level_0/f_directory/c/directory/recurse_do.h +++ b/level_0/f_directory/c/directory/recurse_do.h @@ -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(). -- 1.8.3.1