aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-04-30 20:54:53 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-04-30 20:54:53 +0000
commita6f2d8233569b4dcb6e26935b33b20f796ce958c (patch)
tree67ca804ba7ceaba1a3ece0366f4a02800e96f714 /tmux.h
parent4a74349ff5c789ea6cc05af5bf8ac25e60abf54a (diff)
downloadrtmux-a6f2d8233569b4dcb6e26935b33b20f796ce958c.tar.gz
rtmux-a6f2d8233569b4dcb6e26935b33b20f796ce958c.tar.bz2
rtmux-a6f2d8233569b4dcb6e26935b33b20f796ce958c.zip
Use a (pre)randomised binary tree for UTF-8 character widths. Probably overkill
but meh.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/tmux.h b/tmux.h
index 6890f01c..fd6ac814 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.307 2009-04-30 16:27:29 nicm Exp $ */
+/* $Id: tmux.h,v 1.308 2009-04-30 20:54:53 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1599,9 +1599,8 @@ int session_select(struct session *, int);
int session_last(struct session *);
/* utf8.c */
-u_int utf8_combine(const u_char *);
-void utf8_split(u_int, u_char *);
-int utf8_width(u_int);
+void utf8_build(void);
+int utf8_width(u_char *);
/* util.c */
char *section_string(char *, size_t, size_t, size_t);