Ignoring values of TOTAL_* details when fetching interface data.
[platform/core/connectivity/stc-manager.git] / src / helper / helper-file.h
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd.
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 __STC_HELPER_FILE_H__
18 #define __STC_HELPER_FILE_H__
19
20 #include <assert.h>
21 #include <errno.h>
22 #include <fcntl.h>
23 #include <stdlib.h>
24
25 #include "stc-manager.h"
26
27 /**
28  * @desc write string to the file
29  * @param path - path to the file, str - string is written to the file
30  * @return negative value if error
31  */
32 int fwrite_str(const char *path, const char *str);
33
34 int fwrite_uint(const char *path, const uint32_t number);
35
36 int fwrite_ulong(const char *path, const unsigned long number);
37
38 int fread_str(const char *path, char **str);
39
40 int fread_uint(const char *path, uint32_t *number);
41
42 int fread_ulong(const char *path, unsigned long *number);
43
44 int fwrite_array(const char *path, const void *array,
45                  const size_t size_of_elem,
46                  const size_t numb_of_elem);
47
48 #endif  /*__STC_HELPER_FILE_H__*/