Create loger.h

This commit is contained in:
Lia Brüggemann 2025-05-28 21:10:27 +02:00 committed by GitHub
parent e6f4dc5cc8
commit 2849b67eaf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

9
c/loger.h Normal file
View file

@ -0,0 +1,9 @@
#ifndef LOGER_H
#define LOGER_H
void error(char message[]);
void info(char message[]);
void warning(char message[]);
#endif