summaryrefslogtreecommitdiffstats
path: root/src/c_keys_next.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_keys_next.c')
-rw-r--r--src/c_keys_next.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/c_keys_next.c b/src/c_keys_next.c
new file mode 100644
index 0000000..68b2a3a
--- /dev/null
+++ b/src/c_keys_next.c
@@ -0,0 +1,25 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* c_keys_next.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */
+/* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */
+/* */
+/* ************************************************************************** */
+
+#include <libft.h>
+#include <term.h>
+
+#include "c_init.h"
+
+short c_key_up(t_caps *tcaps)
+{
+ tputs("qwe", 1, ft_putchar);
+ tcaps->cpos = 3;
+ tcaps->lpos = 1;
+ /* ft_dprintf(0, "qwe"); */
+ return (1);
+}