Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of ConfigFile by
Revision 8:8b282b2b8d24, committed 2015-01-07
- 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);
