mshell/include/keys.h

16 lines
396 B
C

#ifndef _KEYS_H
#define _KEYS_H
#include <stdlib.h>
void delete_key(int pos, int *n, char **line);
void move_left(int *pos);
void move_right(int *pos, int n);
void home_key(int *pos);
void end_key(int *pos, int n);
void backspace_key(int *pos, int *n, char **line);
void new_line();
void tab_key(int *pos, int *n, char **line);
void printable_key(int *pos, int *n, char c, char **line);
#endif