9 lines
266 B
C
9 lines
266 B
C
#ifndef WHY2_MISC_H
|
|
#define WHY2_MISC_H
|
|
|
|
void checkVersion(); //THIS FUNCTION CHECKS IF LATEST VERSION OF WHY2 IS USED
|
|
void generateTextKeyChain(char key[], int *textKeyChain, int textKeyChainSize);
|
|
int countIntLength(int number); //RETURNS LENGTH OF number
|
|
|
|
#endif
|