Files
mckernel/kernel/include/kmsg.h
2016-02-22 13:32:20 +09:00

22 lines
379 B
C

/**
* \file kmsg.h
* License details are found in the file LICENSE.
* \brief
* Functions of output to McKernel message
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
* Copyright (C) 2011 - 2012 Taku Shimosawa
*/
/*
* HISTORY:
*/
#ifndef KMSG_H
#define KMSG_H
void kputs(char *buf);
int kprintf(const char *format, ...);
void kmsg_init(int);
#endif