summaryrefslogtreecommitdiffhomepage
path: root/dev/ddk/DDKKit/io.h
blob: a5ab93f16c507884cd365b851b4693ca325ad672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* -------------------------------------------

	Copyright Amlal EL Mahrouss.

	Purpose: DDK Text I/O.

------------------------------------------- */

#pragma once

#include <DDKKit/str.h>

/// @brief print character into UART.
DDK_EXTERN void kputc(const char ch);

/// @brief print string to UART.
/// @param message string to transmit to UART.
DDK_EXTERN void kprint(const char* message);