From da480a31a9410ee2a7ca76a3701de6dfb6870876 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sun, 9 Jul 2023 11:32:44 -0500 Subject: [PATCH] Cleanup: Conversion header comments. --- level_1/fl_conversion/c/conversion.h | 40 ++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/level_1/fl_conversion/c/conversion.h b/level_1/fl_conversion/c/conversion.h index c5ca372..0c3add7 100644 --- a/level_1/fl_conversion/c/conversion.h +++ b/level_1/fl_conversion/c/conversion.h @@ -68,11 +68,11 @@ extern "C" { * This will ignore NULL values. * This will process signed statuses (+/-). * This will detect based types as follows: - * - hexidecimals begin with either '0x' or '0X'. - * - duodecimals begin with either '0d' or '0D'. - * - octals begin with either '0o' or '0O'. - * - binaries begin with either '0b' or '0B'. - * - decimal is used for all other cases. + * - Hexidecimals begin with either '0x' or '0X'. + * - Duodecimals begin with either '0d' or '0D'. + * - Octals begin with either '0o' or '0O'. + * - Binaries begin with either '0b' or '0B'. + * - Decimal is used for all other cases. * * Leading 0's and whitespace are ignored. * Whitespace after the first digit is considered invalid. @@ -146,11 +146,11 @@ extern "C" { * This will ignore NULL values. * This will not process signed statuses (+/-). * This will detect based types as follows: - * - hexidecimals begin with either '0x' or '0X'. - * - duodecimals begin with either '0d' or '0D'. - * - octals begin with either '0o' or '0O'. - * - binaries begin with either '0b' or '0B'. - * - decimal is used for all other cases. + * - Hexidecimals begin with either '0x' or '0X'. + * - Duodecimals begin with either '0d' or '0D'. + * - Octals begin with either '0o' or '0O'. + * - Binaries begin with either '0b' or '0B'. + * - Decimal is used for all other cases. * * Leading 0's and whitespace are ignored. * Whitespace after the first digit is considered invalid. @@ -226,11 +226,11 @@ extern "C" { * This will ignore NULL values. * This will process signed statuses (+/-). * This will detect based types as follows: - * - hexidecimals begin with either '0x' or '0X'. - * - duodecimals begin with either '0d' or '0D'. - * - octals begin with either '0o' or '0O'. - * - binaries begin with either '0b' or '0B'. - * - decimal is used for all other cases. + * - Hexidecimals begin with either '0x' or '0X'. + * - Duodecimals begin with either '0d' or '0D'. + * - Octals begin with either '0o' or '0O'. + * - Binaries begin with either '0b' or '0B'. + * - Decimal is used for all other cases. * * Leading 0's and whitespace are ignored. * Whitespace after the first digit is considered invalid. @@ -301,11 +301,11 @@ extern "C" { * This will ignore NULL values. * This will not process signed statuses (+/-). * This will detect based types as follows: - * - hexidecimals begin with either '0x' or '0X'. - * - duodecimals begin with either '0d' or '0D'. - * - octals begin with either '0o' or '0O'. - * - binaries begin with either '0b' or '0B'. - * - decimal is used for all other cases. + * - Hexidecimals begin with either '0x' or '0X'. + * - Duodecimals begin with either '0d' or '0D'. + * - Octals begin with either '0o' or '0O'. + * - Binaries begin with either '0b' or '0B'. + * - Decimal is used for all other cases. * * Leading 0's and whitespace are ignored. * Whitespace after the first digit is considered invalid. -- 1.8.3.1