Lumiera
0.pre.03
»edit your freedom«
Lumiera API Documentation
Intro
Overview
Modules
+
Classes
Class List
Class Index
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Typedefs
a
b
d
e
f
h
i
l
o
p
r
s
t
v
y
Enumerations
Enumerator
+
Related Functions
_
b
c
e
f
h
i
k
m
n
o
p
q
s
t
u
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
+
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
s
t
u
w
z
Typedefs
Enumerations
Enumerator
+
Files
File List
+
File Members
+
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Functions
b
c
d
e
f
h
i
j
l
m
n
o
p
q
r
s
t
u
Variables
Typedefs
Enumerations
Enumerator
+
Macros
a
c
d
e
g
i
k
l
m
n
o
p
r
s
t
v
Related Pages
Examples
▼
Lumiera
►
Lumiera API Documentation
Intro
Overview
►
Modules
►
Classes
►
Namespaces
▼
Files
►
File List
►
File Members
Test List
Todo List
Deprecated List
►
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
configentry.c
Go to the documentation of this file.
1
/*
2
Configentry - single entries from configfiles
3
4
Copyright (C)
5
2008, Christian Thaeter <ct@pipapo.org>
6
7
**Lumiera** is free software; you can redistribute it and/or modify it
8
under the terms of the GNU General Public License as published by the
9
Free Software Foundation; either version 2 of the License, or (at your
10
option) any later version. See the file COPYING for further details.
11
12
* *****************************************************************/
13
14
22
#include "
lib/safeclib.h
"
23
#include "
common/configentry.h
"
24
25
26
27
LumieraConfigitem
28
lumiera_configentry_new (LumieraConfigitem tmp)
29
{
30
LumieraConfigentry
self
=
lumiera_malloc
(
sizeof
(*
self
));
31
lumiera_configitem_move ((LumieraConfigitem)
self
, tmp);
32
34
35
return
(LumieraConfigitem)
self
;
36
}
37
38
39
LumieraConfigitem
40
lumiera_configentry_destroy (LumieraConfigitem
self
)
41
{
43
44
return
self
;
45
}
46
47
struct
lumiera_configitem_vtable
lumiera_configentry_funcs =
48
{
49
.newitem = lumiera_configentry_new,
50
.destroy = lumiera_configentry_destroy
51
};
52
53
54
safeclib.h
Portable and safe wrappers around some C-Lib functions.
lumiera_configitem_vtable
Definition:
configitem.h:63
configentry.h
Draft for a configuration system (2008).
lumiera_malloc
void * lumiera_malloc(size_t size)
Allocate memory.
Definition:
safeclib.c:113
common
configentry.c
Generated on Fri Dec 13 2024 05:05:32 for Lumiera by
1.8.13