diff --git a/master/master/lib/ini/ini.c b/master/master/lib/ini/ini.c --- a/master/master/lib/ini/ini.c +++ b/master/master/lib/ini/ini.c @@ -1,11 +1,22 @@ -/* inih -- simple .INI file parser - -inih is released under the New BSD license (see LICENSE.txt). Go to the project -home page for more info: - -http://code.google.com/p/inih/ - -*/ +/* + * Master Firmware: INI Parse Backend + * + * Wireless Observational Modular Aerial Network + * + * Ethan Zonca + * Matthew Kanning + * Kyle Ripperger + * Matthew Kroening + * + * This library was modified to use SD card FAT read/write operations + * + * Original library: + * + * inih is released under the New BSD license (see LICENSE.txt). Go to the project + * home page for more info: + * http://code.google.com/p/inih/ + * + */ #include #include @@ -21,6 +32,7 @@ http://code.google.com/p/inih/ #define MAX_SECTION 50 #define MAX_NAME 50 + /* Strip whitespace chars off end of given string, in place. Return s. */ static char* rstrip(char* s) {