Added some more unimplemented functions

This commit is contained in:
2024-02-15 00:34:48 +01:00
parent 07e04889a5
commit 7d826ccb99
4 changed files with 36 additions and 1 deletions

View File

@@ -63,4 +63,9 @@ bool backing_exists(const char* backing) {
return false;
return true;
}
}
uint64_t get_backing_creation_time(const char* backing) {
// A valid backing name is a number, corresponding to the timestamp of the backing disk creation
return strtoull(backing, NULL, 10);
}