Annotation of freem/src/iniconf.h, revision 1.3
1.1 snw 1: /*
1.3 ! snw 2: * $Id$
1.1 snw 3: * Function prototypes, structs, and macros for reading
4: * FreeM configuration files
5: *
6: *
1.2 snw 7: * Author: Serena Willis <snw@coherent-logic.com>
1.1 snw 8: * Copyright (C) 1998 MUG Deutschland
1.3 ! snw 9: * Copyright (C) 2020, 2025 Coherent Logic Development LLC
1.1 snw 10: *
11: *
12: * This file is part of FreeM.
13: *
14: * FreeM is free software: you can redistribute it and/or modify
15: * it under the terms of the GNU Affero Public License as published by
16: * the Free Software Foundation, either version 3 of the License, or
17: * (at your option) any later version.
18: *
19: * FreeM is distributed in the hope that it will be useful,
20: * but WITHOUT ANY WARRANTY; without even the implied warranty of
21: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22: * GNU Affero Public License for more details.
23: *
24: * You should have received a copy of the GNU Affero Public License
25: * along with FreeM. If not, see <https://www.gnu.org/licenses/>.
26: *
1.3 ! snw 27: * $Log$
! 28: *
! 29: * SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC
! 30: * SPDX-License-Identifier: AGPL-3.0-or-later
1.1 snw 31: **/
32:
33: #ifndef _CONFIG_H
34: #define _CONFIG_H
35:
36: #define CONF_BUFSIZE 255
37:
38: typedef struct ini_keyvalue {
39: char *key;
40: char *value;
41:
42: struct ini_keyvalue *next;
43: } ini_keyvalue;
44:
45: typedef struct ini_section {
46: char *name;
47:
48: ini_keyvalue *head;
49:
50: struct ini_section *next;
51: } ini_section;
52:
53: extern int get_conf(char *section, char *key, char *value);
54: extern int file_exists(char *filename);
55: extern void write_profile_string(char *file, char *section, char *key, char *value);
56: extern ini_keyvalue *ini_insert(ini_section *s, char *section, char *key, char *value);
57: extern ini_keyvalue *ini_kv_insert(ini_section *s, char *key, char *value);
58: extern void ini_section_delete(ini_section *head, char *name);
59: extern void ini_key_delete(ini_section *head, char *key);
60: #endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>