Files
my-os-project2/kernel/term/term.h
2025-08-22 12:37:48 +02:00

17 lines
256 B
C

#ifndef TERM_TERM_H_
#define TERM_TERM_H_
#include "flanterm.h"
#include "flanterm_backends/fb.h"
#include "spinlock/spinlock.h"
typedef struct {
struct flanterm_context *ftctx;
} Term;
extern Term TERM;
void term_init(void);
#endif // TERM_TERM_H_