16 lines
348 B
C
16 lines
348 B
C
#ifndef H_POLYBIUS
|
|
#define H_POLYBIUS
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "functions.h"
|
|
|
|
#define POLYBIUS_SIZE 5
|
|
#define ALPHABET_SIZE 26
|
|
|
|
int cryptPolybius(const char *, const char *, const char *);
|
|
int decryptPolybius(const char *, const char *, const char *);
|
|
void generateSquarePolybius(char polybius[5][5], const char *);
|
|
|
|
#endif
|