Annotation of freem/src/iniconf.h, revision 1.1

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>