This commit is contained in:
2024-03-23 01:17:46 +05:00
parent dd5788f72a
commit 9bc2a8587b
13 changed files with 183 additions and 115 deletions

View File

@@ -38,10 +38,7 @@ void printrowgraph(Hashtable* ht){
char* genkey(u32 i){
char* key=malloc(12);
IFMSC(
sprintf_s(key,12,"key_%u",i),
sprintf(key,"key_%u",i)
);
ksprintf(key,12,"key_%u",i);
return key;
}