10 lines
162 B
C
10 lines
162 B
C
|
#ifndef KMSG_H
|
||
|
#define KMSG_H
|
||
|
|
||
|
#include <stdarg.h>
|
||
|
|
||
|
void kmsg_ok(char* format, ...);
|
||
|
void kmsg_warn(char* format, ...);
|
||
|
void kmsg_fail(char* format, ...);
|
||
|
|
||
|
#endif
|