Update doxygen
[platform/core/base/bundle.git] / src / keyval_type.h
1 /*
2  * Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __KEYVAL_TYPE_H__
18 #define __KEYVAL_TYPE_H__
19
20 /**
21  * keyval_type.h
22  *
23  * Definitions & short funcs for keyval type
24  */
25
26 #include <stddef.h>
27 #include <string.h>
28
29 #include "bundle.h"
30
31 #ifdef __cplusplus
32 extern "C" {
33 # endif
34
35 /* measure_size function type */
36 typedef size_t (*keyval_type_measure_size_func_t) (void *val);
37
38 void _type_init_measure_size_func(void);
39 int keyval_type_is_array(int type);
40 int keyval_type_is_measurable(int type);
41 keyval_type_measure_size_func_t keyval_type_get_measure_size_func(int type);
42
43 /* Measure functions for each type */
44 size_t keyval_type_measure_size_str(void *val);
45 void keyval_type_init(void);
46
47 #ifdef __cplusplus
48 }
49 #endif
50
51 #endif /* __KEYVAL_TYPE_H__ */