mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-27 03:49:58 -07:00
14 lines
420 B
C
14 lines
420 B
C
#pragma once
|
|
|
|
#include <flipper_format/flipper_format.h>
|
|
|
|
/**
|
|
* @brief Migrates config file to the latest version
|
|
* @param fff_data_file original config file to be migrated
|
|
* @param fff_backup_data_file backup copy of original config file
|
|
* @return \c true if operation succeeded; \c false otherwise
|
|
*/
|
|
bool totp_config_migrate_to_latest(
|
|
FlipperFormat* fff_data_file,
|
|
FlipperFormat* fff_backup_data_file);
|