/* * This program source code file is part of the KTag project. * * 🛡️ 🃞 * * Copyright © 2024-2025 Joseph P. Kearney and the KTag developers. * * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU Affero General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more * details. * * There should be a copy of the GNU Affero General Public License in the LICENSE * file in the root of this repository. If not, see . */ #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); SystemKResult_T KV_Get_Value_uint32(const char *filename, const char *search_key, uint32_t *value); SystemKResult_T KV_Set_Value_uint32(const char *filename, const char *set_key, uint32_t *set_value); SystemKResult_T KV_Get_Value_uint8(const char *filename, const char *search_key, uint8_t *value); SystemKResult_T KV_Set_Value_uint8(const char *filename, const char *set_key, uint8_t *set_value);