11 lines
351 B
C
11 lines
351 B
C
#ifndef WHY2_MISC_H
|
|
#define WHY2_MISC_H
|
|
|
|
#include <why2/flags.h>
|
|
|
|
void checkVersion(inputFlags flags); //THIS FUNCTION CHECKS IF LATEST VERSION OF WHY2 IS USED
|
|
void generateTextKeyChain(char key[], int *textKeyChain, int textKeyChainSize); //GENERATES ARRAY FOR ENCRYPTION/DECRYPTION
|
|
int countIntLength(int number); //RETURNS LENGTH OF number
|
|
|
|
#endif
|