From 89eb2a9ad7837cb6d9c1a3d40bce8516e071aea3 Mon Sep 17 00:00:00 2001 From: Manuel Bucher <manuel.bucher@hu-berlin.de> Date: Sun, 24 Jun 2018 13:23:06 +0200 Subject: [PATCH] Added header comment --- loesung.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/loesung.c b/loesung.c index 774b98c..89de1cb 100755 --- a/loesung.c +++ b/loesung.c @@ -1,7 +1,12 @@ - -#include <stdio.h> -#include <stdlib.h> -#include <string.h> +/** + * Loesung fuer das Programmierprojekt des Kurses Digitale Systeme SS18 + * + * Autor: Manuel Bucher + * Datum: 2018-06-24 + */ +#include <stdio.h> // getchar, (f)printf +#include <stdlib.h> // realloc +#include <string.h> // memset, memcpy #include <stdint.h> // fixed sized integer #include <stdbool.h> // booleans -- GitLab