Rename delete_file.

Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
Pol Henarejos
2026-04-27 09:45:42 +02:00
parent a7b143f0d8
commit b73a7e4a72
2 changed files with 2 additions and 2 deletions

View File

@@ -512,7 +512,7 @@ bool file_has_data(const file_t *f) {
return f != NULL && f->data != NULL && file_get_size(f) > 0;
}
int delete_file(file_t *ef) {
int file_delete(file_t *ef) {
if (ef == NULL) {
return PICOKEYS_OK;
}