将DoubleTime改名为PreciseTime

This commit is contained in:
2025-04-24 22:46:13 +08:00
parent 5f6aa10d7c
commit 31f3c23c4b
4 changed files with 7 additions and 7 deletions

View File

@@ -39,13 +39,13 @@ int os_main(int argc,os_char **argv)
hash_code=new char[hash_length];
start_time=GetDoubleTime();
start_time=GetPreciseTime();
h->Init();
h->Update(file_data,file_length);
h->Final(hash_code);
end_time=GetDoubleTime();
end_time=GetPreciseTime();
ToLowerHexStr(hash_str,hash_code,hash_length);