466ad636244ec652a3c32594103e1e8c56432c4d
[platform/upstream/iotivity.git] / resource / csdk / connectivity / src / bt_edr_adapter / tizen / caedrutils.h
1 /* ****************************************************************
2  *
3  * Copyright 2014 Samsung Electronics All Rights Reserved.
4  *
5  *
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  ******************************************************************/
20
21 /**
22  * @file
23  *
24  * This file provides helper functions for EDR adapter.
25  */
26
27 #ifndef CA_EDR_UTILS_H_
28 #define CA_EDR_UTILS_H_
29
30 #include <stdbool.h>
31 #include <string.h>
32
33 #include "cacommon.h"
34 #include "oic_malloc.h"
35
36 /**
37  * @var EDR_ADAPTER_TAG
38  * @brief Logging tag for module name.
39  */
40 #ifndef EDR_ADAPTER_TAG
41 #define EDR_ADAPTER_TAG "CA_EDR_ADAPTER"
42 #endif //EDR_ADAPTER_TAG
43
44 #ifdef __cplusplus
45 extern "C"
46 {
47 #endif
48
49 /**
50  * @brief  Checks if the specified list of service UUIDs contains OIC service UUID.
51  *
52  * @param  serviceUUID  [IN] Array of service UUIDs
53  * @param  serviceCount [IN] Size of the service UUIDs array.
54  * @param  matchService [IN] Service UUID to be checked in the given array of service UUIDs
55  *
56  * @return  true if match service UUID found otherwise false.
57  *
58  */
59 bool CAEDRIsServiceSupported(const char **serviceUUID, int32_t serviceCount,
60                             const char *matchService);
61
62 #ifdef __cplusplus
63 } /* extern "C" */
64 #endif
65
66 #endif /* CA_EDR_UTILS_H_ */
67
68