Skip to content

Instantly share code, notes, and snippets.

@haup
haup / caesar.c
Last active December 14, 2015 15:59
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
typedef char* string;
string encrypt(int offset, string text);
string decrypt(int offset, string text);
bool gueltige_variablen(string variable);