]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/nandsim/nandsim_rcfile.h
Followup to r347996
[FreeBSD/FreeBSD.git] / usr.sbin / nandsim / nandsim_rcfile.h
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1999, Boris Popov
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of the author nor the names of any co-contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  *
31  * $FreeBSD$
32  *
33  * from: FreeBSD: src/lib/libncp/ncpl_rcfile.c,v 1.5 2007/01/09 23:27:39 imp Exp
34  */
35
36 #ifndef _SIMRC_H_
37 #define _SIMRC_H_
38
39 #include <sys/queue.h>
40
41 struct rckey {
42         SLIST_ENTRY(rckey)      rk_next;
43         char                    *rk_name;       /* key name */
44         char                    *rk_value;      /* key value */
45 };
46
47 struct rcsection {
48         SLIST_ENTRY(rcsection)  rs_next;
49         SLIST_HEAD(rckey_head,rckey) rs_keys;   /* key list */
50         char                    *rs_name;       /* section name */
51         int                     rs_id;          /* allow few same named */
52 };
53
54 struct rcfile {
55         SLIST_ENTRY(rcfile)     rf_next;
56         SLIST_HEAD(rcsec_head, rcsection) rf_sect;      /* sections list */
57         char                    *rf_name;               /* file name */
58         FILE                    *rf_f;                  /* file desc */
59 };
60
61 int rc_open(const char *, const char *,struct rcfile **);
62 int rc_close(struct rcfile *);
63 int rc_getstringptr(struct rcfile *, const char *, int, const char *,
64     char **);
65 int rc_getstring(struct rcfile *, const char *, int, const char *,
66     unsigned int, char *);
67 int rc_getint(struct rcfile *, const char *, int, const char *, int *);
68 int rc_getbool(struct rcfile *, const char *, int, const char *, int *);
69 int rc_getsectionscount(struct rcfile *, const char *);
70 char **rc_getkeys(struct rcfile *, const char *, int);
71
72 #endif /* _SIMRC_H_ */