mirror of
https://gitlab.os-k.eu/os-k-team/kvisc.git
synced 2023-08-25 14:05:46 +02:00
15 lines
395 B
C
15 lines
395 B
C
// The OS/K Team licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
#include <pc/arch.h>
|
|
#include <SDL2/SDL.h>
|
|
#include <SDL2/SDL_ttf.h>
|
|
|
|
void console_init(ctx_t *ctx);
|
|
void console_exit(ctx_t *ctx);
|
|
|
|
void console_render(ctx_t *ctx);
|
|
void console_putat(ctx_t *ctx, char ch, int x, int y);
|
|
void console_putc(ctx_t *ctx, char ch);
|
|
|