Api Symbols: replace asserts with checks

merge ofw commit
This commit is contained in:
MX
2024-03-25 13:53:32 +03:00
parent 81a16e5a28
commit 585b7f963d
565 changed files with 3544 additions and 2691 deletions

View File

@@ -14,7 +14,7 @@ void fatfs_init(void) {
*
* @return Time in DWORD (toasters per square washing machine)
*/
DWORD get_fattime() {
DWORD get_fattime(void) {
DateTime furi_time;
furi_hal_rtc_get_datetime(&furi_time);

View File

@@ -17,7 +17,7 @@ typedef struct {
static SectorCache* cache = NULL;
void sector_cache_init() {
void sector_cache_init(void) {
if(cache == NULL) {
cache = memmgr_alloc_from_pool(sizeof(SectorCache));
}

View File

@@ -8,7 +8,7 @@ extern "C" {
/**
* @brief Init sector cache system
*/
void sector_cache_init();
void sector_cache_init(void);
/**
* @brief Get sector data from cache