Apply coding rule
[platform/core/api/tethering.git] / src / tethering_private.c
1 /*
2 * Copyright (c) 2011 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 #include <stdlib.h>
18 #include <string.h>
19 #include <system_info.h>
20 #include "tethering_private.h"
21
22 int tethering_check_feature_supported(const char* feature, ...)
23 {
24         va_list list;
25         const char *key;
26         int ret;
27         bool value, supported = false;
28
29         va_start(list, feature);
30         key = feature;
31         while (1) {
32                 ret = system_info_get_platform_bool(key, &value);
33                 if (ret < 0) {
34                         ERR("Get feature is failed\n");
35                         return TETHERING_ERROR_OPERATION_FAILED;
36                 }
37                 supported |= value;
38                 key = va_arg(list, const char *);
39                 if (!key) break;
40         }
41
42         if (!supported)
43                 return TETHERING_ERROR_NOT_SUPPORT_API;
44
45         return TETHERING_ERROR_NONE;
46 }