/*
 * datum_test.c
 *
 * Beispielprogramm Systemprogrammierung: Kapselung mit C
 *
 * Autor: H.Drachenfels
 * Erstellt am: 21.12.2017
 */

#include "datum.h"

int main()
{
    datum *d;

    d = datum_heute();
    if (d)
    {
        datum_ausgeben(d);
        datum_freigeben(d);
    }

    d = datum_vom(30, 1, 2018);
    if (d)
    {
        datum_ausgeben(d);
        datum_freigeben(d);
    }

    return 0;
}

