mirror of
https://github.com/tmux/tmux.git
synced 2025-09-05 08:07:03 +00:00
Don't use [4] since they are confusing and use the right size for memset. DOH.
This commit is contained in:
6
tmux.h
6
tmux.h
@ -1,4 +1,4 @@
|
||||
/* $Id: tmux.h,v 1.235 2009-01-15 19:27:31 nicm Exp $ */
|
||||
/* $Id: tmux.h,v 1.236 2009-01-17 18:38:12 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -1463,8 +1463,8 @@ int session_select(struct session *, int);
|
||||
int session_last(struct session *);
|
||||
|
||||
/* utf8.c */
|
||||
u_int utf8_combine(const u_char [4]);
|
||||
void utf8_split(u_int, u_char [4]);
|
||||
u_int utf8_combine(const u_char *);
|
||||
void utf8_split(u_int, u_char *);
|
||||
int utf8_width(u_int);
|
||||
|
||||
/* buffer.c */
|
||||
|
Reference in New Issue
Block a user