2 * Copyright (c) 2016 Samsung Electronics Co., Ltd.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 #ifndef __STC_HELPER_FILE_H__
18 #define __STC_HELPER_FILE_H__
25 #include "stc-manager.h"
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
32 int fwrite_str(const char *path, const char *str);
34 int fwrite_uint(const char *path, const uint32_t number);
36 int fwrite_ulong(const char *path, const unsigned long number);
38 int fread_str(const char *path, char **str);
40 int fread_uint(const char *path, uint32_t *number);
42 int fread_ulong(const char *path, unsigned long *number);
44 int fwrite_array(const char *path, const void *array,
45 const size_t size_of_elem,
46 const size_t numb_of_elem);
48 #endif /*__STC_HELPER_FILE_H__*/