ConfigFile by shintamainjp with MAXLEN_VALUE extended to 500 characters

Fork of ConfigFile by Shinichiro Nakamura

Files at this revision

API Documentation at this revision

Comitter:
faucherb94
Date:
Wed Jan 07 14:34:32 2015 +0000
Parent:
7:6ae4c48cc8c1
Commit message:
Typo in last commit - extended max VALUE length (MAXLEN_VALUE in ConfigFile.h) to 500 characters

Changed in this revision

ConfigFile.h Show annotated file Show diff for this revision Revisions of this file
--- a/ConfigFile.h	Wed Dec 10 20:24:28 2014 +0000
+++ b/ConfigFile.h	Wed Jan 07 14:34:32 2015 +0000
@@ -111,7 +111,7 @@
     config_t **configlist;
     static const int MAXCONFIG = 64;
     static const int MAXLEN_KEY = 64;
-    static const int MAXLEN_VALUE = 500;
+    static const int MAXLEN_VALUE = 500;    // changed by faucherb94
     static const char SEPARATOR = '=';
 
     config_t *search(char *key);