/* funcs.c */ /* Functions to handle cursor movement for */ /* pd_readline. */ /* This code is released to the public domain. */ /* "Share and enjoy...." ;) */ /* See the UNLICENSE file for details. */ #include #include #include /* Move up in history list. */ int up(int i) { } /* Move down in history list. */ int down(int i) { } /* Move cursor to left. */ buf left(buf b) { } /* Move cursor to right. */ buf right(buf b) { } /* Delete a char. */ buf delch(buf b) { } /* Insert a char. */ buf insch(buf b) { } /* Function to handle escape sequences. */ int esc(int i) { }