1 /* 2 * Copyright (c) 2024 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr/kernel.h> 8 9 #include "wifi_credentials_internal.h" 10 wifi_credentials_store_entry(size_t idx,const void * buf,size_t buf_len)11int wifi_credentials_store_entry(size_t idx, const void *buf, size_t buf_len) 12 { 13 ARG_UNUSED(idx); 14 ARG_UNUSED(buf); 15 ARG_UNUSED(buf_len); 16 17 return 0; 18 } 19 wifi_credentials_delete_entry(size_t idx)20int wifi_credentials_delete_entry(size_t idx) 21 { 22 ARG_UNUSED(idx); 23 24 return 0; 25 } 26 wifi_credentials_load_entry(size_t idx,void * buf,size_t buf_len)27int wifi_credentials_load_entry(size_t idx, void *buf, size_t buf_len) 28 { 29 ARG_UNUSED(idx); 30 ARG_UNUSED(buf); 31 ARG_UNUSED(buf_len); 32 33 return 0; 34 } 35 wifi_credentials_backend_init(void)36int wifi_credentials_backend_init(void) 37 { 38 return 0; 39 } 40