From 17cb0ce3c4a936ed38109d1455178eb14f18ea07 Mon Sep 17 00:00:00 2001 From: Andrzej Zaborowski Date: Sat, 5 Sep 2009 03:12:19 +0200 Subject: Move create_dirs to storage.c, add file read/write utilities --- src/storage.h | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/storage.h (limited to 'src/storage.h') diff --git a/src/storage.h b/src/storage.h new file mode 100644 index 00000000..305c4a54 --- /dev/null +++ b/src/storage.h @@ -0,0 +1,36 @@ +/* + * + * oFono - Open Source Telephony + * + * Copyright (C) 2008-2009 Intel Corporation. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +#ifdef TEMP_FAILURE_RETRY +#define TFR TEMP_FAILURE_RETRY +#else +#define TFR +#endif + +#include + +int create_dirs(const char *filename, const mode_t mode); + +ssize_t read_file(unsigned char *buffer, size_t len, + const char *path_fmt, ...); + +ssize_t write_file(const unsigned char *buffer, size_t len, mode_t mode, + const char *path_fmt, ...); -- cgit v1.2.3