Many new settings to support the new state machine functionality.

This commit is contained in:
Joe Kearney 2025-03-01 06:12:58 -06:00
parent 583995097a
commit 998f93134a
5 changed files with 90 additions and 28 deletions

View file

@ -19,6 +19,10 @@
* file in the root of this repository. If not, see <http://www.gnu.org/licenses/>.
*/
#define KV_MAX_LINE_LENGTH 140
#define KV_MAX_KEY_LENGTH 64
#define KV_MAX_VALUE_LENGTH 64
SystemKResult_T KV_Get_Value_string(const char *filename, const char *search_key, char *value);
SystemKResult_T KV_Set_Value_string(const char *filename, const char *set_key, const char *set_value);