declared countRepeatedKeySize

just test declaration
This commit is contained in:
Václav Šmejkal 2022-08-24 14:54:10 +02:00
parent 5d53a6e706
commit 21ab6a8674
No known key found for this signature in database
GPG Key ID: FD749A97DF2D5E19

View File

@ -351,6 +351,12 @@ unsigned long countUnusedKeySize(char *text, char *key)
return returning;
}
unsigned long countRepeatedKeySize(char *text, char *key)
{
//TODO: FIX
return 0;
}
unsigned long compareTimeMicro(struct timeval startTime, struct timeval finishTime)
{
return (finishTime.tv_sec - startTime.tv_sec) * 1000000 + finishTime.tv_usec - startTime.tv_usec;