]> Kevux Git Server - fll/commitdiff
Update: IKI Read documentation comments should use main.call.
authorKevin Day <Kevin@kevux.org>
Wed, 19 Feb 2025 00:49:34 +0000 (18:49 -0600)
committerKevin Day <Kevin@kevux.org>
Wed, 19 Feb 2025 00:51:53 +0000 (18:51 -0600)
The `main.callback` was recently replaced with `main.call`.
These documentation comments were overlooked or otherwise missed.

level_3/fss_read/c/main/common.h
level_3/fss_read/c/main/fss_read.h
level_3/fss_read/c/main/main.h
level_3/fss_read/c/main/print/data.h
level_3/fss_read/c/main/process.h
level_3/fss_read/c/payload/print.h
level_3/iki_read/c/main/process.h

index feed8bbc9c74f3a6e218cefee7ff9b07fe6437c4..e462eadf445bb9dc739b616fea846e8dab5917a2 100644 (file)
@@ -47,7 +47,7 @@ extern "C" {
  * @param main
  *   The main program data.
  *
- *   This calls main.callback.process_last_line() if not NULL.
+ *   This calls main.call.process_last_line() if not NULL.
  *
  *   This alters main.setting.range.
  *
index 28193682aabe0fc6f710e7f7a6624de195ca5ac2..e03c6f92036ee2e1ebe9bf08271fc4e059e3d1ea 100644 (file)
@@ -126,7 +126,7 @@ extern "C" {
  *     F_true on success when performing verification and verify passed.
  *     F_false on success when performing verification and verify failed.
  *
- *     Errors (with error bit) from: main.callback.process().
+ *     Errors (with error bit) from: main.call.process().
  */
 #ifndef _di_fss_read_main_
   extern void fss_read_main(fss_read_main_t * const main);
index 04e6d53b94acaa8d53c9d9a0ad365edabe08593b..54e07b6a70282ad5d40f134324f6a6819a129fe7 100644 (file)
@@ -61,7 +61,7 @@ extern int main(const int argc, const f_string_t *argv, const f_string_t *envp);
  * @param main
  *   The main program and settings data.
  *
- *   This alters main.callback.process_help, main.callback.process, and main.callback.process_pipe.
+ *   This alters main.call.process_help, main.call.process, and main.call.process_pipe.
  *
  *   This alters main.setting.state.status:
  *     F_okay on success.
index b1c34394b125d07c8b376e9dbe7a9e4d4490c792..e55ce5dfa2b165f1e541a5a435587781a990e50b 100644 (file)
@@ -21,7 +21,7 @@ extern "C" {
  *
  * This locks, uses, and unlocks the file stream.
  *
- * This processes multiple Content ranges and calls main.callback.print_content() for each individual Content range.
+ * This processes multiple Content ranges and calls main.call.print_content() for each individual Content range.
  *
  * @param print
  *   The output structure to print to.
@@ -44,10 +44,10 @@ extern "C" {
  *
  *   F_output_not (with error bit) if a parameter is NULL.
  *
- * @see main.callback.print_content()
- * @see main.callback.print_object()
- * @see main.callback.print_object_end()
- * @see main.callback.print_set_end()
+ * @see main.call.print_content()
+ * @see main.call.print_object()
+ * @see main.call.print_object_end()
+ * @see main.call.print_set_end()
  */
 #ifndef _di_fss_read_print_at_
   extern f_status_t fss_read_print_at(fl_print_t * const print, const f_number_unsigned_t at, const f_number_unsigneds_t delimits_object, const f_number_unsigneds_t delimits_content);
@@ -82,9 +82,9 @@ extern "C" {
  *
  *   F_output_not (with error bit) if a parameter is NULL.
  *
- * @see main.callback.print_content()
- * @see main.callback.print_object_end()
- * @see main.callback.print_set_end()
+ * @see main.call.print_content()
+ * @see main.call.print_object_end()
+ * @see main.call.print_set_end()
  */
 #ifndef _di_fss_read_print_content_
   extern f_status_t fss_read_print_content(fl_print_t * const print, const f_number_unsigned_t at, const f_range_t range, const uint8_t quote, const f_number_unsigneds_t delimits);
index 072815e63ab92f8888d16009afc6c8cfd27889e4..c027a99fbdf25d12b0b3f3dc09b1caab55891151 100644 (file)
@@ -27,14 +27,14 @@ extern "C" {
  *   This alters main.setting.state.status:
  *     F_okay on success.
  *
- *     Errors (with error bit) from: main.callback.process_at().
- *     Errors (with error bit) from: main.callback.process_at_line().
- *     Errors (with error bit) from: main.callback.process_columns().
- *     Errors (with error bit) from: main.callback.process_load().
- *     Errors (with error bit) from: main.callback.process_name().
- *     Errors (with error bit) from: main.callback.print_at().
- *     Errors (with error bit) from: main.callback.process_read().
- *     Errors (with error bit) from: main.callback.process_total().
+ *     Errors (with error bit) from: main.call.process_at().
+ *     Errors (with error bit) from: main.call.process_at_line().
+ *     Errors (with error bit) from: main.call.process_columns().
+ *     Errors (with error bit) from: main.call.process_load().
+ *     Errors (with error bit) from: main.call.process_name().
+ *     Errors (with error bit) from: main.call.print_at().
+ *     Errors (with error bit) from: main.call.process_read().
+ *     Errors (with error bit) from: main.call.process_total().
  *
  *     Errors (with error bit) from: fss_read_signal_check().
  *
index 6f107b33f32924c781779e67a442bf6978f86638..86e2dc08788bf4bdda1c1e657b163d8a81fbebd8 100644 (file)
@@ -41,9 +41,9 @@ extern "C" {
  *
  *   F_output_not (with error bit) if a parameter is NULL.
  *
- * @see main.callback.print_content()
- * @see main.callback.print_object_end()
- * @see main.callback.print_set_end()
+ * @see main.call.print_content()
+ * @see main.call.print_object_end()
+ * @see main.call.print_set_end()
  */
 #ifndef _di_fss_read_payload_print_content_
   extern f_status_t fss_read_payload_print_content(fl_print_t * const print, const f_number_unsigned_t at, const f_range_t range, const uint8_t quote, const f_number_unsigneds_t delimits);
index 5080dcaa554a7f5b9f53bc8a0c008b39155a74ee..05bb961abfb1d73f6a4d46b7ad7b0c36167d870c 100644 (file)
@@ -33,13 +33,13 @@ extern "C" {
  *
  *     F_interrupt (with error bit) on (exit) signal received.
  *
- *     Errors (with error bit) from: main.callback.process_buffer_ranges().
- *     Errors (with error bit) from: main.callback.process_buffer_ranges_whole().
- *     Errors (with error bit) from: main.callback.process_buffer_total().
+ *     Errors (with error bit) from: main.call.process_buffer_ranges().
+ *     Errors (with error bit) from: main.call.process_buffer_ranges_whole().
+ *     Errors (with error bit) from: main.call.process_buffer_total().
  *
- * @see main.callback.process_buffer_ranges()
- * @see main.callback.process_buffer_ranges_whole()
- * @see main.callback.process_buffer_total()
+ * @see main.call.process_buffer_ranges()
+ * @see main.call.process_buffer_ranges_whole()
+ * @see main.call.process_buffer_total()
  */
 #ifndef _di_iki_read_process_buffer_
   extern void iki_read_process_buffer(iki_read_main_t * const main);