summaryrefslogtreecommitdiffstats
path: root/smenu.h
diff options
context:
space:
mode:
authorpgen <p.gen.progs@gmail.com>2024-02-06 00:04:51 +0100
committerpgen <p.gen.progs@gmail.com>2024-02-06 00:06:39 +0100
commitdfd5830b2ab094d79cc360e9f341d406b2525d16 (patch)
tree9c216ab15bd70f41c3fda9769be83863061b944b /smenu.h
parent85d783c4e669e14adccc5c009ca71180c630458c (diff)
Rename get_bytes/_word into read_bytes/_word
Diffstat (limited to 'smenu.h')
-rwxr-xr-xsmenu.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/smenu.h b/smenu.h
index c242ab1..2d61e99 100755
--- a/smenu.h
+++ b/smenu.h
@@ -650,27 +650,27 @@ expand(char *src,
misc_t *misc);
int
-get_bytes(FILE *input,
- char *utf8_buffer,
- ll_t *ignored_glyphs_list,
- langinfo_t *langinfo,
- misc_t *misc);
+read_bytes(FILE *input,
+ char *utf8_buffer,
+ ll_t *ignored_glyphs_list,
+ langinfo_t *langinfo,
+ misc_t *misc);
int
get_scancode(unsigned char *s, size_t max);
char *
-get_word(FILE *input,
- ll_t *word_delims_list,
- ll_t *line_delims_list,
- ll_t *ignored_glyphs_list,
- char *utf8_buffer,
- unsigned char *is_last,
- toggle_t *toggles,
- langinfo_t *langinfo,
- win_t *win,
- limit_t *limits,
- misc_t *misc);
+read_word(FILE *input,
+ ll_t *word_delims_list,
+ ll_t *line_delims_list,
+ ll_t *ignored_glyphs_list,
+ char *utf8_buffer,
+ unsigned char *is_last,
+ toggle_t *toggles,
+ langinfo_t *langinfo,
+ win_t *win,
+ limit_t *limits,
+ misc_t *misc);
void
left_margin_putp(char *s, term_t *term, win_t *win);
@@ -824,7 +824,7 @@ void
align_word(word_t *word, alignment_t alignment, size_t prerfix, char sp);
int
-isempty_non_utf8(const unsigned char * s);
+isempty_non_utf8(const unsigned char *s);
int
-isempty_utf8(const unsigned char * s);
+isempty_utf8(const unsigned char *s);