1
0
Fork 0
mirror of https://github.com/CovidBraceletPrj/CovidBracelet.git synced 2025-07-04 20:36:52 +02:00
CovidBracelet/src/storage.h
2021-05-25 18:06:15 +02:00

16 lines
No EOL
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