#ifndef __5D_TERMINAL_EMULATOR_H
#define __5D_TERMINAL_EMULATOR_H

namespace GUI {
struct TerminalEmulator;
void TerminalEmulator_send(struct TerminalEmulator* emulator, const unsigned char* text, unsigned int count);
void TerminalEmulator_init(struct TerminalEmulator* emulator, struct REPL* REPL);
struct TerminalEmulator* TerminalEmulator_new(struct REPL* REPL);
}; /* end namespace GUI */

#endif /* ndef __5D_TERMINAL_EMULATOR_H */