Informatik2_Pr/fehler.c
2025-05-01 14:02:55 +02:00

9 lines
171 B
C

#include <stdio.h>
#include <stdlib.h>
// Gibt eine Fehlermeldung aus und beendet das Programm
void fehler(char *text) {
printf("FEHLER: %s\n", text);
exit(1);
}