os/src/kernel/common.h
2026-02-22 22:16:16 -05:00

18 lines
428 B
C

#ifndef COMMON_H
#define COMMON_H
/**
* Sends a panic message through the default output of the kernel.
* @param format The format of the message
* @param ... The parameters of the message
*/
void panic(const char *format, ...);
/**
* Prints a string to the default output of the kernel.
* @param format The format of the string
* @param ... The parameters of the string
*/
void print(const char *format, ...);
#endif