Adds few missing zephyr/ prefixes to leftover #include statements that either got added recently or were using double quote format. Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
32 lines
596 B
C
32 lines
596 B
C
/*
|
|
* Copyright (c) 2018 Nordic Semiconductor ASA
|
|
* Copyright (c) 2015 Runtime Inc
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __SETTINGS_FCB_H_
|
|
#define __SETTINGS_FCB_H_
|
|
|
|
#include <zephyr/fs/fcb.h>
|
|
#include <zephyr/settings/settings.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct settings_fcb {
|
|
struct settings_store cf_store;
|
|
struct fcb cf_fcb;
|
|
};
|
|
|
|
extern int settings_fcb_src(struct settings_fcb *cf);
|
|
extern int settings_fcb_dst(struct settings_fcb *cf);
|
|
void settings_mount_fcb_backend(struct settings_fcb *cf);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __SETTINGS_FCB_H_ */
|