summaryrefslogtreecommitdiff
path: root/src/textfile.h
blob: 4ecd5ed980ae2885ce0ea4d66401f18061666911 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 *
 *  BlueZ - Bluetooth protocol stack for Linux
 *
 *  Copyright (C) 2004-2010  Marcel Holtmann <marcel@holtmann.org>
 *
 *
 */

int create_filename(char *str, size_t size, const char *fmt, ...)
					__attribute__((format(printf, 3, 4)));
int create_file(const char *filename, const mode_t mode);
int create_name(char *buf, size_t size, const char *address, const char *name);

int textfile_put(const char *pathname, const char *key, const char *value);
int textfile_del(const char *pathname, const char *key);
char *textfile_get(const char *pathname, const char *key);

typedef void (*textfile_cb) (char *key, char *value, void *data);

int textfile_foreach(const char *pathname, textfile_cb func, void *data);