aboutsummaryrefslogtreecommitdiff
path: root/src/conio.h
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-02-11 13:26:57 -0500
committerB. Watson <urchlay@slackware.uk>2026-02-11 13:26:57 -0500
commitb7b86e3a26d4bfba9c49f0a24ec030a7b3ebd8a3 (patch)
treed2cb7323c78a4983e2a498110a077aaf24d1f696 /src/conio.h
downloadfujinet-chat-b7b86e3a26d4bfba9c49f0a24ec030a7b3ebd8a3.tar.gz
initial commit
Diffstat (limited to 'src/conio.h')
-rw-r--r--src/conio.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/conio.h b/src/conio.h
new file mode 100644
index 0000000..25ca6c2
--- /dev/null
+++ b/src/conio.h
@@ -0,0 +1,14 @@
+/**
+ * conio
+ */
+
+#ifndef CONIO_H
+#define CONIO_H
+
+void print(const char* c);
+void printc(char* c);
+void printl(const char* c, unsigned short l);
+void get_line(char* buf, unsigned char len);
+char get_char(void);
+
+#endif /* CONIO_H */