Skip to content

Instantly share code, notes, and snippets.

@behrtam
behrtam / caesar.c
Last active December 14, 2015 16:29 — forked from haup/caesar.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef char* string;
string encrypt(int offset, string text);
string decrypt(int offset, string text);
/* Programmaufruf: ceasar [-d|-e] [offset] [text ...]