From 5d53a6e706ce9ca9035451c080602c4051df0066 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Wed, 24 Aug 2022 14:53:02 +0200 Subject: [PATCH] created countRepeatedKeySize function and guess what is it for hehe --- include/misc.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/misc.h b/include/misc.h index 780afde..b5029f8 100644 --- a/include/misc.h +++ b/include/misc.h @@ -12,6 +12,7 @@ _Bool checkKey(char *key); //CHECKS IF KEY IS VALID _Bool checkText(char *text); //CHECKS IF TEXT IS VALID unsigned long countIntLength(int number); //RETURNS LENGTH OF number unsigned long countUnusedKeySize(char *text, char *key); //COUNT unusedKeySize +unsigned long countRepeatedKeySize(char *text, char *key); //COUNT repeatedKeySize unsigned long compareTimeMicro(struct timeval startTime, struct timeval finishTime); //COMPARE TIMES IN MICROSECONDS #endif