diff options
| author | Manuel Bentele | 2020-10-23 15:18:01 +0200 |
|---|---|---|
| committer | Manuel Bentele | 2020-10-23 15:18:01 +0200 |
| commit | dbb41ce2b7f309d394054a6bd1e33afd578798a5 (patch) | |
| tree | 6a31092063d9f2fb5ac5720ec6759040e793c3d5 /utils/include/mbsedit.h | |
| parent | Set Linux kernel version to unknown if it is not detectable (diff) | |
| download | xloop-dbb41ce2b7f309d394054a6bd1e33afd578798a5.tar.gz xloop-dbb41ce2b7f309d394054a6bd1e33afd578798a5.tar.xz xloop-dbb41ce2b7f309d394054a6bd1e33afd578798a5.zip | |
Move the source code of all xloop components to the common 'src' directory
Diffstat (limited to 'utils/include/mbsedit.h')
| -rw-r--r-- | utils/include/mbsedit.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/utils/include/mbsedit.h b/utils/include/mbsedit.h deleted file mode 100644 index 8d1c6c2..0000000 --- a/utils/include/mbsedit.h +++ /dev/null @@ -1,32 +0,0 @@ -#ifndef UTIL_LINUX_MBSEDIT_H -# define UTIL_LINUX_MBSEDIT_H - -#include "mbsalign.h" -#include "widechar.h" - -struct mbs_editor { - char *buf; /* buffer */ - size_t max_bytes; /* size of the buffer */ - size_t max_cells; /* maximal allowed number of cells */ - size_t cur_cells; /* number of cells to print the buffer */ - size_t cur_bytes; /* number of chars in bytes */ - size_t cursor; /* cursor position in bytes */ - size_t cursor_cells; /* cursor position in cells */ -}; - -enum { - MBS_EDIT_LEFT, - MBS_EDIT_RIGHT, - MBS_EDIT_END, - MBS_EDIT_HOME -}; - -struct mbs_editor *mbs_new_edit(char *buf, size_t bufsz, size_t ncells); -char *mbs_free_edit(struct mbs_editor *edit); - -int mbs_edit_goto(struct mbs_editor *edit, int where); -int mbs_edit_delete(struct mbs_editor *edit); -int mbs_edit_backspace(struct mbs_editor *edit); -int mbs_edit_insert(struct mbs_editor *edit, wint_t c); - -#endif /* UTIL_LINUX_MBSEDIT_H */ |
