]> Kevux Git Server - fll/commitdiff
Cleanup: Use new comment structure at the tops of files
authorKevin Day <thekevinday@gmail.com>
Fri, 26 Jul 2019 03:00:43 +0000 (22:00 -0500)
committerKevin Day <thekevinday@gmail.com>
Fri, 26 Jul 2019 03:15:22 +0000 (22:15 -0500)
Just put the comments in the header files.
Simplify the comment stucture.
The git repository provides the authors/credits, no need to explicitly do so in the files anymore.
Do not provide the micro version, instead provide the major and minor versions in the files (which effectively represent the API version).

81 files changed:
level_0/f_colors/c/colors.h
level_0/f_console/c/console.c
level_0/f_console/c/console.h
level_0/f_conversion/c/conversion.c
level_0/f_conversion/c/conversion.h
level_0/f_errors/c/errors.h
level_0/f_file/c/file.c
level_0/f_file/c/file.h
level_0/f_fss/c/fss.h
level_0/f_memory/c/memory.c
level_0/f_memory/c/memory.h
level_0/f_paths/c/filesystem_paths.h
level_0/f_paths/c/fll_paths.h
level_0/f_pipe/c/pipe.c
level_0/f_pipe/c/pipe.h
level_0/f_print/c/print.c
level_0/f_print/c/print.h
level_0/f_serialized/c/serialized.h
level_0/f_socket/c/socket.c
level_0/f_socket/c/socket.h
level_0/f_strings/c/strings.h
level_0/f_types/c/types.h
level_0/f_types/c/types_array.h
level_1/fl_colors/c/colors.c
level_1/fl_colors/c/colors.h
level_1/fl_console/c/console.c
level_1/fl_console/c/console.h
level_1/fl_directory/c/directory.c
level_1/fl_directory/c/directory.h
level_1/fl_errors/c/errors.c
level_1/fl_errors/c/errors.h
level_1/fl_file/c/file.c
level_1/fl_file/c/file.h
level_1/fl_fss/c/fss.c
level_1/fl_fss/c/fss.h
level_1/fl_fss/c/fss_basic.c
level_1/fl_fss/c/fss_basic.h
level_1/fl_fss/c/fss_basic_list.c
level_1/fl_fss/c/fss_basic_list.h
level_1/fl_fss/c/fss_errors.h
level_1/fl_fss/c/fss_extended.c
level_1/fl_fss/c/fss_extended.h
level_1/fl_fss/c/fss_macro.h
level_1/fl_serialized/c/serialized.c
level_1/fl_serialized/c/serialized.h
level_1/fl_socket/c/socket.c
level_1/fl_socket/c/socket.h
level_1/fl_strings/c/strings.c
level_1/fl_strings/c/strings.h
level_2/fll_colors/c/colors.c
level_2/fll_colors/c/colors.h
level_2/fll_execute/c/execute.c
level_2/fll_execute/c/execute.h
level_2/fll_fss/c/fss_basic.c
level_2/fll_fss/c/fss_basic.h
level_2/fll_fss/c/fss_basic_list.c
level_2/fll_fss/c/fss_basic_list.h
level_2/fll_fss/c/fss_errors.c
level_2/fll_fss/c/fss_errors.h
level_2/fll_fss/c/fss_extended.c
level_2/fll_fss/c/fss_extended.h
level_3/firewall/c/firewall.c
level_3/firewall/c/firewall.h
level_3/firewall/c/private-firewall.c
level_3/firewall/c/private-firewall.h
level_3/fss_basic_list_read/c/fss_basic_list_read.c
level_3/fss_basic_list_read/c/fss_basic_list_read.h
level_3/fss_basic_list_write/c/fss_basic_list_write.c
level_3/fss_basic_list_write/c/fss_basic_list_write.h
level_3/fss_basic_read/c/fss_basic_read.c
level_3/fss_basic_read/c/fss_basic_read.h
level_3/fss_basic_write/c/fss_basic_write.c
level_3/fss_basic_write/c/fss_basic_write.h
level_3/fss_extended_read/c/fss_extended_read.c
level_3/fss_extended_read/c/fss_extended_read.h
level_3/fss_extended_write/c/fss_extended_write.c
level_3/fss_extended_write/c/fss_extended_write.h
level_3/fss_return_code/c/fss_return_code.c
level_3/fss_return_code/c/fss_return_code.h
level_3/return_code/c/return_code.c
level_3/return_code/c/return_code.h

index 08f6bb6579de82c4037052366ba4eb7e0e368e73..ac14d88d542a7cede545a8169b3e9dae2242aeb9 100644 (file)
@@ -1,11 +1,11 @@
-/* FLL - Level 0
- * Project:       Colors
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 0
  *
- * Provide basic color output support (linux & xterm)
+ * Project: Colors
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * Provide basic color output support (linux & xterm).
  * This is the Featureless LINUX Library, so there is no support for non-linux colors at this time.
  */
 #ifndef _F_colors_h
index 1d110ac28e9d43f99b4f691badb1927ac912515f..fef3d264a53e8d712b715c331a0ef34f5d41a032 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 0
- * Project:       Console
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_0/console.h>
 
 #ifdef __cplusplus
index d81175eee5e4eec87119132d84cc8c35c3e03f48..4e5e3cc272865144ff11335c78aa892a9b249299 100644 (file)
@@ -1,11 +1,11 @@
-/* FLL - Level 0
- * Project:       Console
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 0
  *
- *  Some console input/output commands
+ * Project: Console
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * Some console input/output commands.
  */
 #ifndef _F_console_h
 #define _F_console_h
index f5c7ffc3fb3ada625a03969a5bdd560893e2c0e2..1e9efa5918e4b3ca1833cf048f6a4a4713f1a103 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 0
- * Project:       Conversion
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_0/conversion.h>
 
 #ifdef __cplusplus
index 161a04531ceca253a8289110123c12aa9faddb4e..45effac785abd8fbe04916fef2ce405935a69a34 100644 (file)
@@ -1,13 +1,13 @@
-/* FLL - Level 0
- * Project:       Conversion
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 0
  *
- * Provide means to convert one data type to another, such as a string to an integer
- * Provide means to identify a digit or a hexadecimal digit (hexdigit)
- * In the future this will have to link to locale support, due to interpeting strings
+ * Project: Conversion
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * Provide means to convert one data type to another, such as a string to an integer.
+ * Provide means to identify a digit or a hexadecimal digit (hexdigit).
+ * In the future this will have to link to locale support, due to interpeting strings.
  *
  * Possible error values on return:
  *   f_warn               - a possible problem, but not an error (warning)
index f732b5a8612d015c178bda9a03529e8d9f734da7..d4a809b46c2b59fb98daa324757427c01e802646 100644 (file)
@@ -1,9 +1,9 @@
-/* FLL - Level 0
- * Project:       Errors
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 0
+ *
+ * Project: Errors
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * Provides error definitions.
  *
index 0a53153d181d8b0365df05d06d5529fb6d19c3aa..2a16a79e5074d143e546eae21edc156e1d3e3de6 100644 (file)
@@ -1,12 +1,12 @@
-/* FLL - Level 0
- * Project:       File
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 0
  *
- *  Provides structures and data types for a file I/O.
- *  Provides operations for opening/closing files
+ * Project: File
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * Provides structures and data types for a file I/O.
+ * Provides operations for opening/closing files.
  */
 #include <level_0/file.h>
 
index 1d0985f6abc3808737537b774c6d7b9d0ac9f5fa..d8fc2c2a3b772532fc1c5a4425866f8238757e6f 100644 (file)
@@ -1,12 +1,12 @@
-/* FLL - Level 0
- * Project:       File
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 0
  *
- *  Provides structures and data types for a file I/O.
- *  Provides operations for opening/closing files
+ * Project: File
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * Provides structures and data types for a file I/O.
+ * Provides operations for opening/closing files.
  */
 #ifndef _F_file_h
 #define _F_file_h
index 0f0634c91c59f3398600e023c814c21b3dfef209..07933abe0765559c50de874e78dc6873d3a61a5e 100644 (file)
@@ -1,14 +1,14 @@
-/* FLL - Level 0
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 0
  *
- * Defines all datatypes to be used for/by project fss
+ * Project: FSS
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
- * The purpose of compression is not to compression the entire file's contents but only and individual objects content, so the file is still partially readable
- * NOTE: all start/stop locations must be defined as a (start < stop) and not (start <= stop), therefore if (start == stop) then stop
+ * Defines all datatypes to be used for/by project fss.
+ *
+ * The purpose of compression is not to compression the entire file's contents but only and individual objects content, so the file is still partially readable.
+ * NOTE: all start/stop locations must be defined as a (start < stop) and not (start <= stop), therefore if (start == stop) then stop.
  */
 #ifndef _F_fss_h
 #define _F_fss_h
index 2dacf27e7990e53d729ab042337c948dcdf6ed99..c460fc5c352d116f25d80b7531a9334cf70ccc82 100644 (file)
@@ -1,12 +1,3 @@
-/* FLL - Level 0
- * Project:       Memory
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
- *
- * Provide means to use memory routines, with error checking.
- */
 #include <level_0/memory.h>
 
 #ifdef __cplusplus
index fe3146e755c948c5538410abd07e694c3754da77..65d2d5b13cd9528ead7020a3080f85e8d9cd75f3 100644 (file)
@@ -1,9 +1,9 @@
-/* FLL - Level 0
- * Project:       Memory
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 0
+ *
+ * Project: Memory
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * Provide means to use memory routines, with error checking.
  *
index 8e6701edeacfe2cc8ff76068a25ca52e35e71250..dad5c924866006adc5a3ddda5a7c9f25a2e6e27a 100644 (file)
@@ -1,13 +1,13 @@
-/* FLL - Level 0
- * Project:       Paths
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 0
+ *
+ * Project: Paths
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * Provide locations to all filesystem paths, for low level hardcoding
  *
- * FIXME: this is very outdated due to numerous structural changes while I was developing turtle kevux
+ * FIXME: this is very outdated due to numerous structural changes while I was developing turtle kevux.
  */
 #ifndef _F_filesystem_paths_h
 #define _F_filesystem_paths_h
index 8abbb61797fa5d01067ac0e3a9f4408a900d6929..7ac452c51d28cb9c7f5d82abfa727ee4bf695da0 100644 (file)
@@ -1,14 +1,14 @@
-/* FLL - Level 0
- * Project:       Paths
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 0
+ *
+ * Project: Paths
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * Provide locations to all fll-specific paths
  * It is planned to have this file auto-generated from a single /etc/fll file such that one file can be used for all supported languages.
  *
- * FIXME: this is very outdated due to numerous structural changes while I was developing turtle kevux
+ * FIXME: this is very outdated due to numerous structural changes while I was developing turtle kevux.
  */
 #ifndef _F_fll_paths_h
 #define _F_fll_paths_h
index 38f8129935413e6d591934819ac5235d2d537e07..36b6019e3e703a017d070848bd6eea22fb863abd 100644 (file)
@@ -1,12 +1,3 @@
-/* FLL - Level 0
- * Project:       Pipe
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
- *
- * Provides pipe functionality.
- */
 #include <level_0/pipe.h>
 
 #ifdef __cplusplus
index 2fee9f0d798d3bcc35f856a6b4f9db0bd5dda214..723510255f1d500636488bb2c9cbeaa61eef8416 100644 (file)
@@ -1,12 +1,11 @@
-/* FLL - Level 0
- * Project:       Pipe
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 0
  *
- * Provides pipe functionality.
+ * Project: Pipe
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
+ * Provides pipe functionality.
  */
 #ifndef _F_pipe_h
 #define _F_pipe_h
index af26b2c8265ff25495fe33fb28680f44f83c0a1f..60ab93a4909f08a87fe3038036414db66939b1e3 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 0
- * Project:       Output
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_0/print.h>
 
 #ifdef __cplusplus
index 73bdf9ca9e2872ed27c98ebe8d6600b572670332..7bee5d9221f41a52cc3c8803684be4b2e990f04f 100644 (file)
@@ -1,11 +1,11 @@
-/* FLL - Level 0
- * Project:       Output
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 0
  *
- * Provides some standard printing functions not available in a libc
+ * Project: Output
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * Provides some standard printing functions not available in a libc.
  */
 #ifndef _F_print_h
 #define _F_print_h
index d25f2871aa991dee6efb2a3edfd3605fc0732788..9e16c094944fb22db8c2384748c96fbfacf8cc93 100644 (file)
@@ -1,13 +1,13 @@
-/* FLL - Level 0
- * Project:       Serialized
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 0
+ *
+ * Project: Serialized
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * Provides string processing functionality for what is to be defined as a serialized string.
  * Serialized strings are strings that can hold multiple values in a single variable.
- * An example of serialized content is the PATH environment variable where ':" separates data."
+ * An example of serialized content is the PATH environment variable where ":" separates data..
  */
 #ifndef _F_serialized_h
 #define _F_serialized_h
index 0e6889ce9d9bea90cded514f029a3d6c1f552374..e2203051c896e6662386344d62bede894f81c9db 100644 (file)
@@ -1,12 +1,3 @@
-/* FLL - Level 0
- * Project:       Socket
- * Version:       0.4.2
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
- *
- * Provide means to connect to and use sockets.
- */
 #include <level_0/socket.h>
 
 #ifdef __cplusplus
index d5ec7ab3140e14a1ed6f6e881b67f4beb444f759..8709d78260410d1cf8004e8f2a2914aa65aa09f9 100644 (file)
@@ -1,9 +1,9 @@
-/* FLL - Level 0
- * Project:       Socket
- * Version:       0.4.2
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 0
+ *
+ * Project: Socket
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * Provide means to connect to and use sockets.
  */
index f0adf36a92996860cf6f4cb0f2db29b6f61cdc58..06474c7d011916df41de1a10a14eb4ab300dbaf9 100644 (file)
@@ -1,11 +1,11 @@
-/* FLL - Level 0
- * Project:       Strings
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 0
  *
- * Provides string capabilities
+ * Project: Strings
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * Provides string capabilities.
  */
 #ifndef _F_strings_h
 #define _F_strings_h
index 1d1a745f8d1eea0707c0054356498c448c0dd302..5cb86ccf3946a00a3526c01329b8f519fe5a41f7 100644 (file)
@@ -1,9 +1,9 @@
-/* FLL - Level 0
- * Project:       Types
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 0
+ *
+ * Project: Types
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * Provides datatype re-definitions
  * If your compiler lacks the ability to produce such, simply re-define them as needed
@@ -23,8 +23,6 @@
  *   uint32_t: 2^32 (unsigned)
  *   int64_t:  2^64 (signed)
  *   uint64_t: 2^64 (unsigned)
- *
- * TODO: Should a range type be implemented? (ie: f_range_short_long -> min=short, max=long)
  */
 #ifndef _F_types_h
 #define _F_types_h
index f068af9ec0a9830d5fe95737ec3cc4c362e6d76b..9da8ca9f43beb7b110659015a50e0fc8d3220837 100644 (file)
@@ -1,9 +1,9 @@
-/* FLL - Level 0
- * Project:       Types Array
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 0
+ *
+ * Project: Types
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * Provides datatypes that are arrays of some sort and require memory operations.
  */
index 96e30f54b882692dc950346d5ba662641ee2dc4c..b617f058fbd5693425227ab97f13d65e485c9448 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 1
- * Project:       Colors
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_1/colors.h>
 
 #ifdef __cplusplus
index 02614e062c8c751cdf922fc4bfac24f621d4a568..8d4f538a632ff7a607bf10a53e2decb5baefcdb0 100644 (file)
@@ -1,11 +1,11 @@
-/* FLL - Level 1
- * Project:       Colors
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 1
  *
- * Provide basic color output support (linux & xterm)
+ * Project: Colors
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * Provide basic color output support (linux & xterm).
  * This is the Featureless LINUX Library, so there is no support for non-linux colors at this time.
  */
 #ifndef _FL_colors_h
index 47d39329cc1ecdf84d2d5551ac15587e91f528a8..b187fc1a77beb4863cc9300213e0c8ecd8edb6db 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 1
- * Project:       Console
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_1/console.h>
 
 #ifdef __cplusplus
index df064964e121679ae3842b5fe281d7bd39962f4e..273185a4b96d3f8fbb6f17fcbfc42e07661fba55 100644 (file)
@@ -1,11 +1,11 @@
-/* FLL - Level 1
- * Project:       Console
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 1
  *
- *  Some console input/output commands
+ * Project: Console
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * Some console input/output commands.
  */
 #ifndef _FL_console_h
 #define _FL_console_h
index bd89e06cb4de93955d696d0c8a6cb9346f126b98..83df1c9c27b6d6341e38964e8281c614e00ac110 100644 (file)
@@ -1,10 +1,3 @@
-/* FLL - Level 1
- * Project:       Directory
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
- */
 #include <level_1/directory.h>
 
 #ifdef __cplusplus
index 7547ea8d93cbece6f972378c0126e8dcf47601f5..5291199fbd483bc8c875af554031026ddaedd1a5 100644 (file)
@@ -1,11 +1,11 @@
-/* FLL - Level 1
- * Project:       Directory
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 1
  *
- *  Provides operations for directory handling
+ * Project: Directory
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * Provides operations for directory handling.
  */
 #ifndef _FL_directory_h
 #define _FL_directory_h
index 7cc15220b512befcf0211ecbd7aa09da31ec894d..58adcf7b2253f13cbe22fb34a1996885b133df29 100644 (file)
@@ -1,12 +1,3 @@
-/* FLL - Level 1
- * Project:       Errors
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
- *
- * Provides error functions, such as those that translate error codes into strings.
- */
 #include <level_1/errors.h>
 
 #ifdef __cplusplus
index 22c8419e38428309496673e55d50f7188c073408..52e9544162e71af9cc35108e0708d0cc83d93e81 100644 (file)
@@ -1,9 +1,9 @@
-/* FLL - Level 1
- * Project:       Errors
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 1
+ *
+ * Project: Errors
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * Provides error functions, such as those that translate error codes into strings.
  */
index 187c4dd0d3f71f6b72e4301824bc2fdf1a5fe816..f8bcf80db9f3b6347955e1ae2545278e5dc3215e 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 1
- * Project:       File
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_1/file.h>
 
 #ifdef __cplusplus
index 489b425f6a88748374ea7ef4626819f409831c64..7b851837045c31d30210bff80290f97eb46a38d4 100644 (file)
@@ -1,10 +1,11 @@
-/* FLL - Level 1
- * Project:       File
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
- *   File Operations
+/**
+ * FLL - Level 1
+ *
+ * Project: File
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * File Operations.
  */
 #ifndef _FL_file_h
 #define _FL_file_h
index 4eda9ed961c07a7578b47d503c045ed5f9210c48..e97f1cc3ecea5a8181cabf29c37663508378be48 100644 (file)
@@ -1,10 +1,3 @@
-/* FLL - Level 1
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
- */
 #include <level_1/fss.h>
 
 #ifdef __cplusplus
index a9b209fcb47318976a0044590578f77953252be8..960553dabaa7c4faa9cfa24cf05f8fd1aa7c4b48 100644 (file)
@@ -1,8 +1,9 @@
-/* FLL - Level 1
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
+/**
+ * FLL - Level 1
+ *
+ * Project: FSS
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  */
 #ifndef _FL_fss_h
 #define _FL_fss_h
index bd51c653ba28e08409b1b4e9dd8b653fa032fc67..b03c97749ad3c87c5bca07420f50f09649165f56 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 1
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_1/fss_basic.h>
 
 #ifdef __cplusplus
index d6ab94f436418a9acf7a24b2a2df62e11439322e..b76e7afb8822e2196098518bd75ae3c1355a198d 100644 (file)
@@ -1,11 +1,11 @@
-/* FLL - Level 1
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 1
  *
- * This is the fss-0000 implementation
+ * Project: FSS
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * This is the fss-0000 implementation.
  */
 #ifndef _FL_fss_basic_h
 #define _FL_fss_basic_h
index 21bcfa69715d02db597fae6ea32354faff9f5b23..c926f7946b44e4a4647c652d7ef4df3ace1a92a0 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 1
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_1/fss_basic.h>
 
 #ifdef __cplusplus
index 1a0adef98c09bf818cc410480c0d4e612c37da68..f490cb0e230d95bcccb355129b38880504d913d1 100644 (file)
@@ -1,11 +1,11 @@
-/* FLL - Level 1
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 1
  *
- * This is the fss-0002 implementation
+ * Project: FSS
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * This is the fss-0002 implementation.
  */
 #ifndef _FL_fss_basic_list_h
 #define _FL_fss_basic_list_h
index d5f1a2a77116c92c61b67e14c21b902d98486ad3..e9002801c3bb8b6c4984f02d7379aaa0582743c9 100644 (file)
@@ -1,8 +1,9 @@
-/* FLL - Level 1
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
+/**
+ * FLL - Level 1
+ *
+ * Project: Strings
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * Provides fss-specific error definitions.
  *
index a3e51eca1834d38c3c3b977230d0fc083c713940..9ddb638e6211d8747616f260dc39e990725e74b2 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 1
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_1/fss_extended.h>
 
 #ifdef __cplusplus
index 2cb7d15a28c85393092edc99d1ab14787328d8e8..3b5c237d3766908c1c65597e4a5efdfcb50757eb 100644 (file)
@@ -1,11 +1,11 @@
-/* FLL - Level 1
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 1
  *
- * This is the fss-0001 implementation
+ * Project: FSS
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * This is the fss-0001 implementation.
  */
 #ifndef _FL_fss_extended_h
 #define _FL_fss_extended_h
index a8f3960d70c74ba5a894fbf2600b2ebd053e10cd..d76abb0b31f694b7e043b018970abd4a6cc964d5 100644 (file)
@@ -1,11 +1,11 @@
-/* FLL - Level 1
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 1
  *
- * Provides generic functionality shared between and used by different fss processing functions
+ * Project: FSS
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * Provides generic functionality shared between and used by different fss processing functions.
  */
 #ifndef _FL_fss_macro_h
 #define _FL_fss_macro_h
index e3088a8ff9af077e2a740f990c771c41874c0416..65bb5283a5e8a31425b744570a8cc0b4b8e84024 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 1
- * Project:       Serialized
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_1/serialized.h>
 
 #ifdef __cplusplus
index 454fd9051a6933b1fd432ca74f2f3895df178844..3e54aeac5b27c2207335b0ec4e4f5773bcf0a98c 100644 (file)
@@ -1,13 +1,13 @@
-/* FLL - Level 1
- * Project:       Serialized
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 1
+ *
+ * Project: Serialized
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * Provides string processing functionality for what is to be defined as a serialized string.
  * Serialized strings are strings that can hold multiple values in a single variable.
- * An example of serialized content is the PATH environment variable where ':" separates data."
+ * An example of serialized content is the PATH environment variable where ":" separates data.
  */
 #ifndef _FL_serialized_h
 #define _FL_serialized_h
index 5452804a14090e0f891c02d5cf84e2f49931991f..850c68f226852e61fe8eb6f834482524aacf7daf 100644 (file)
@@ -1,12 +1,3 @@
-/* FLL - Level 1
- * Project:       Socket
- * Version:       0.4.2
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
- *
- * Provide means to connect to and use sockets.
- */
 #include <level_0/socket.h>
 
 #ifdef __cplusplus
index bb2c92fd3b2e8d4d8f87de86ce1862983efc15fe..f312af1b3254bdf0394e900ce780edca4143e802 100644 (file)
@@ -1,9 +1,9 @@
-/* FLL - Level 1
- * Project:       Socket
- * Version:       0.4.2
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 1
+ *
+ * Project: Socket
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * Provide means to connect to and use sockets.
  */
index bf76eb867315067afe946e0add5041e1bd480421..246ac8cc2a198c779a76306c021c3aa450725e4b 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 1
- * Project:       Strings
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_1/strings.h>
 
 #ifdef __cplusplus
index 31b9b5ea75f5ab945b9f2bbd0e78705e4018c375..a6c6c36ac0d07bae0363bf19b3a0b5bc8417d390 100644 (file)
@@ -1,11 +1,11 @@
-/* FLL - Level 1
- * Project:       Strings
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 1
  *
- * Provides basic string manipulation and processing capabilities
+ * Project: Strings
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * Provides basic string manipulation and processing capabilities.
  */
 #ifndef _FL_strings_h
 #define _FL_strings_h
index 0bde1fe75a7cb41e24bd57cb24e3e0baf602fc30..308cabf029ea307e341bda737ff69ba7567fc650 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 2
- * Project:       Colors
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_2/colors.h>
 
 #ifdef __cplusplus
index 05943f2d1e66cb95654e576430ade6349368d7c6..79a3b136cc39887096a76bdbf13a9491b07cbd0b 100644 (file)
@@ -1,11 +1,11 @@
-/* FLL - Level 2
- * Project:       Colors
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 2
  *
- * Provide standard color handling
+ * Project: Colors
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * Provide standard color handling.
  */
 #ifndef _FLL_colors_h
 #define _FLL_colors_h
index 2c3185014521fceeb873095c1d4af0fd0a5fb7a7..789b018132e228bb5113da5df7631bf886eb7bc0 100644 (file)
@@ -1,12 +1,3 @@
-/* FLL - Level 2
- * Project:       Execute
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
- *
- * Provides program execution operations similart to system().
- */
 #include <level_2/execute.h>
 
 #ifdef __cplusplus
index bbd949247b7601d852091fbfba4cb6953f64e541..7d2841129b7a8948f0945726e81f0b334733f7af 100644 (file)
@@ -1,11 +1,11 @@
-/* FLL - Level 2
- * Project:       Execute
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 2
  *
- * Provides program execution operations similar to system()
+ * Project: Execute
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * Provides program execution operations similar to system().
  */
 #ifndef _FLL_execute_h
 #define _FLL_execute_h
index 6ff0532d90ac57b2eb12acfa89784f22a70ce5f5..b4bd3386d82239e7b671274da61bfbb7b6e55100 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 2
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_2/fss_basic.h>
 
 #ifdef __cplusplus
index 431c91218596c25f6dd8a68b791e38fbf50ed1c2..9257c4d8ae487517cde94c0597867484f0906f2f 100644 (file)
@@ -1,11 +1,11 @@
-/* FLL - Level 2
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 2
  *
- * This is the fss-0000 implementation
+ * Project: FSS
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * This is the fss-0000 implementation.
  */
 #ifndef _FLL_fss_basic_h
 #define _FLL_fss_basic_h
index 5c3aff19ab6282aeedfa3785f45d3d0572840195..4f38d1cc3df53ffad3458e30038a6a7a0b3376bc 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 2
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_2/fss_basic_list.h>
 
 #ifdef __cplusplus
index 7494ddae1cb5bac309f824532a9d53305806907a..3612083d91eab9348291ab8254e4a2486c8be066 100644 (file)
@@ -1,11 +1,11 @@
-/* FLL - Level 2
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 2
  *
- * This is the fss-0002 implementation
+ * Project: FSS
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * This is the fss-0002 implementation.
  */
 #ifndef _FLL_fss_basic_list_h
 #define _FLL_fss_basic_list_h
index 50b591a59e43a001f9ff5ce7e520414c45c026f3..e5fad3ff511f2eea54acf5a5872d70a2af0c08e2 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 2
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_2/fss_errors.h>
 
 #ifdef __cplusplus
index ee30f7692ce3733d426ef8b8a16393a0d7263a33..5be69f7f05813d1026c6a20376a2077022b8d491 100644 (file)
@@ -1,9 +1,9 @@
-/* FLL - Level 2
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 2
+ *
+ * Project: FSS
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * This provides fss error code translation.
  */
index 6515112699d6329e281daa1fe0da42bf4e147a4e..10a24eb1822ae64c0143973a8dcc226de5f36e65 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 2
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_2/fss_extended.h>
 
 #ifdef __cplusplus
index 061c4908bda8e27280f13e6a518b272615e4aa2b..9c02b2baa40badf654f14707d0204d51a9cd1bf3 100644 (file)
@@ -1,11 +1,11 @@
-/* FLL - Level 2
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 2
  *
- * This is the fss-0001 implementation
+ * Project: FSS
+ * API Version: 0.5
+ * Licenses: lgplv2.1
+ *
+ * This is the fss-0001 implementation.
  */
 #ifndef _FLL_fss_extended_h
 #define _FLL_fss_extended_h
index cfbf7d7e27c0a3aa67cf58552ec02f12932647e4..978d9483bccf839f1c39743fbff98efa7e611b95 100644 (file)
@@ -1,8 +1,8 @@
-/* FLL - Level 3
- * Project:       Firewall
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
+/**
+ * FLL - Level 3
+ * Project: Firewall
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  */
 #include <level_3/firewall.h>
 #include "private-firewall.h"
index 212ca3959bc5375026f1405cfdf8e03bb32a9d36..f94a77a4cfab1f7bf9dc0ac01394d6a2657a8a72 100644 (file)
@@ -1,13 +1,13 @@
-/* FLL - Level 3
- * Project:       Firewall
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 3
+ *
+ * Project: Firewall
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * This is the Kevux Operating System Firewall program.
  * This program utilizes the Featureless Linux Library.
- * This program processes firewall commands and passes them to iptables from netfiler.org
+ * This program processes firewall commands and passes them to iptables from netfiler.org.
  */
 #ifndef _firewall_h
 
index d503837afb09dff9cad48d1b41bbc31efc535707..3ec02e9b22017b01fcc520210e6b2c2213be8bc0 100644 (file)
@@ -1,6 +1,3 @@
-/**
- * Private source file for firewall.c.
- */
 #include <level_3/firewall.h>
 #include "private-firewall.h"
 
index c47438539694e7178483d82e7c1bb5a209afd9d0..4ddc6202cc4ed2627aed134f5d82352cd6bf8c36 100644 (file)
@@ -1,7 +1,10 @@
 /**
- * Private include file for firewall.c.
+ * FLL - Level 3
+ *
+ * Project: Firewall
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  */
-
 #ifndef _PRIVATE_firewall_h
 #define _PRIVATE_firewall_h
 
index 5b0b1f9f8e5a18ef641ca62f25f5a9c9abf315b0..472c83b7effa5bca2b3159e01595d85f244fc3c4 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 3
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_3/fss_basic_list_read.h>
 
 #ifdef __cplusplus
index 00f701e9117e11be9a12b8a627be3e3c1223cb7e..d5727d55544d52170b0acfb0e4de025b5e94c956 100644 (file)
@@ -1,13 +1,13 @@
-/* FLL - Level 3
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 3
+ *
+ * Project: FSS
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * This is the FSS Basic List Read program
  * This program utilizes the Featureless Linux Library.
- * This program processes files or other input in fss format and stores the results in the fss_basic_list_read_data
+ * This program processes files or other input in fss format and stores the results in the fss_basic_list_read_data.
  */
 #ifndef _fss_basic_list_read_h
 
index 29a48874f114f40b1d0cea6ab09b9cdac78eb877..3451d37d6256d477e2d480a09a8afcdae12e2999 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 3
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_3/fss_basic_list_write.h>
 
 #ifdef __cplusplus
index d6ac39b05381b25ce64813bae30bd346f861408c..5765183110c18a72a42254c988e52ce4ed5e56bb 100644 (file)
@@ -1,9 +1,9 @@
-/* FLL - Level 3
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 3
+ *
+ * Project: FSS
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * This program provides fss basic list write functionality.
  */
index df46a01d339f0ee9454e1fa849d2909c01855036..5e1234fb7028b733080925e81937d4670b851026 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 3
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_3/fss_basic_read.h>
 
 #ifdef __cplusplus
index 8397f9302371bf4764f10e5c4068b8de5ed6cad1..f548be77442967387973ce455c72e36158d35faf 100644 (file)
@@ -1,13 +1,13 @@
-/* FLL - Level 3
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 3
+ *
+ * Project: FSS
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * This is the FSS Basic Read program
  * This program utilizes the Featureless Linux Library.
- * This program processes files or other input in fss format and stores the results in the fss_basic_read_data
+ * This program processes files or other input in fss format and stores the results in the fss_basic_read_data.
  */
 #ifndef _fss_basic_read_h
 
index 0b10e52e8ab732c640b3f84f82d1ed96b0b91037..644de3bf15954533e10b8206e3a1a68e7b9fb6b9 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 3
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_3/fss_basic_write.h>
 
 #ifdef __cplusplus
index 6411efc2088681315bd7a75db66768b6c21b4ef6..24634298f31976e9ea89a6e8490c4a2c2760bf39 100644 (file)
@@ -1,9 +1,9 @@
-/* FLL - Level 3
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 3
+ *
+ * Project: FSS
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * This program provides fss basic write functionality.
  */
index ed15b9cb2d2ea6e659eebfa7aef60ef0093841b6..6fbfd004ef3a50ac87a618a9f967c3309a0e3117 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 3
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_3/fss_extended_read.h>
 
 #ifdef __cplusplus
index 5bf71d64ebda9400fbc3a016b904b5d4734682ed..ed1499b5f950b6deaaffe0cccbdabad99e736952 100644 (file)
@@ -1,13 +1,13 @@
-/* FLL - Level 3
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 3
+ *
+ * Project: FSS
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * This is the FSS Basic Read program
  * This program utilizes the Featureless Linux Library.
- * This program processes files or other input in fss format and stores the results in the fss_extended_read_data
+ * This program processes files or other input in fss format and stores the results in the fss_extended_read_data.
  */
 #ifndef _fss_extended_read_h
 
index 90c045f96ee6de3a2cc409ca60452c53cef1621b..df4fae276721ce9afd197ea72be6cf83bb6d4ca2 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 3
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_3/fss_extended_write.h>
 
 #ifdef __cplusplus
index 0f5a83f41db8e42835ae147aa5f66afc06748334..cb82cac16650ee4ab6b3db04506821fa9986e233 100644 (file)
@@ -1,9 +1,9 @@
-/* FLL - Level 3
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 3
+ *
+ * Project: FSS
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * This program provides fss basic write functionality.
  */
index fb65f95eaf884e3931385b15d7588d6a10f3fb1b..fc7fb4bd6a426d379dd4f2df11cfb504bfb23e52 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 3
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_3/fss_return_code.h>
 
 #ifdef __cplusplus
index 672cf6f247c201176b15dfc793b6731cc071c5f6..fb2e886fb7992cc7ebaeb9e51f1c920fe689012d 100644 (file)
@@ -1,9 +1,9 @@
-/* FLL - Level 3
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 3
+ *
+ * Project: FSS
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  *
  * This program provides error code to string translation.
  */
index aefc3fd9fde9403d5d056c758e19821549ac2caf..aec79d0fb3f16b060ebcfdfc1f3bb7fe90e15934 100644 (file)
@@ -1,9 +1,3 @@
-/* FLL - Level 3
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- */
 #include <level_3/return_code.h>
 
 #ifdef __cplusplus
index ceb9b5d98dd003bd8b47e688c3e67f01fdde6bb4..67527883152484ab70a7ef6e52c55511ae887d94 100644 (file)
@@ -1,11 +1,9 @@
-/* FLL - Level 3
- * Project:       FSS
- * Version:       0.5.0
- * Licenses:      lgplv2.1
- * Programmers:   Kevin Day
- * Documentation:
+/**
+ * FLL - Level 3
  *
- * This program provides error code to string translation.
+ * Project: Return Code
+ * API Version: 0.5
+ * Licenses: lgplv2.1
  */
 #ifndef _return_code_h