All checks were successful
Build documentation / build-and-deploy (push) Successful in 3m35s
21 lines
405 B
C
21 lines
405 B
C
#ifndef _KERNEL_DEVICE_TERMINAL_H
|
|
#define _KERNEL_DEVICE_TERMINAL_H
|
|
|
|
#include <device/def_device_op.h>
|
|
#include <libk/list.h>
|
|
#include <libk/std.h>
|
|
#include <proc/proc.h>
|
|
#include <proc/reschedule.h>
|
|
|
|
struct device;
|
|
|
|
DEFINE_DEVICE_INIT (terminal_init);
|
|
|
|
DEFINE_DEVICE_FINI (terminal_fini);
|
|
|
|
DEFINE_DEVICE_OP (terminal_putstr);
|
|
|
|
DEFINE_DEVICE_OP (terminal_dimensions);
|
|
|
|
#endif // _KERNEL_DEVICE_TERMINAL_H
|