10 lines
No EOL
162 B
C
10 lines
No EOL
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 |