From 334ddcd2b8725228508245f0b9279f21b068db66 Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 9 Jan 2020 08:03:47 +0100 Subject: [PATCH] Update README.md --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 634aa9f..1737fd5 100644 --- a/README.md +++ b/README.md @@ -4,22 +4,22 @@ CUI generation library for C on Windows ## Hinweis zum Installieren: -Sowohl "menu.c" als auch "menu.h" zum Projektordner hinzufügen und mit #include "menu.h" einbinden. +Sowohl "menu.c" als auch "menu.h" zum Projektordner hinzufügen und mit ```C#include "menu.h"``` einbinden. ### Anwendungsbeispiel ```C struct MenuItem items[] = { {"Euklidscher Algorithmus", '1', (void*)&euklid}, - {"Gerstenkorn", '2', (void*)&gerste}, + {"Gerstenkorn", '2', (void*)&gerste}, {"Osterdatum ausrechnen", '3', (void*)&ostern}, - {"ASCII Tabelle", '4', (void*)&ascii}, - {"DB-Pruefziffer", '5', (void*)&db}, - {"Modulo 11", '6', (void*)&mod11}, - {"BLANK", NULL, (void*)NULL}, - {"Namen TEST", 'a', (void*)&namen}, - {"Strings", 'b', (void*)&strHeader}, - {"BLANK", NULL, (void*)NULL}, - {"Exit", 'q', (void*)&exit} + {"ASCII Tabelle", '4', (void*)&ascii}, + {"DB-Pruefziffer", '5', (void*)&db}, + {"Modulo 11", '6', (void*)&mod11}, + {"BLANK", NULL, (void*)NULL}, + {"Namen TEST", 'a', (void*)&namen}, + {"Strings", 'b', (void*)&strHeader}, + {"BLANK", NULL, (void*)NULL}, + {"Exit", 'q', (void*)&exit} }; show_menu(sizeof(items) / sizeof(struct MenuItem), items, "Vorlesungsaufgaben", true, true, NO_BORDER); ````