1
0
mirror of https://github.com/CovidBraceletPrj/CovidBracelet.git synced 2024-06-07 21:27:54 +02:00
CovidBracelet/src/storage.h
2021-05-25 18:06:15 +02:00

16 lines
239 B
C

#ifndef STORAGE_H
#define STORAGE_H
#include "contacts.h"
/**
* Initialize the storage api.
*/
int init_storage(void);
/**
* Store all contacts of a period in flash.
*/
int store_period_contacts(period_contacts_t* contacts);
#endif