9 lines
306 B
C
9 lines
306 B
C
#ifndef NETWORK_CREDENTIAL_STORE_H
|
|
#define NETWORK_CREDENTIAL_STORE_H
|
|
#include <stdbool.h>
|
|
#include "network_state.h"
|
|
bool network_credential_store_load(network_profile_t *profile);
|
|
bool network_credential_store_replace(const network_profile_t *profile);
|
|
bool network_credential_store_delete(void);
|
|
#endif
|