X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=st.h;h=a3b19dea2f58072518fcbc7052d370e9f4829448;hb=add0211522737b79dad990ccd65c8af63b5cc1dd;hp=1015fc6bdd0d1505288651e433db96c5ad21445b;hpb=e0215d53770a9b6bc6e5d7b9a603ecd34dbd7100;p=st.git diff --git a/st.h b/st.h index 1015fc6..a3b19de 100644 --- a/st.h +++ b/st.h @@ -1,5 +1,8 @@ /* See LICENSE for license details. */ +#include +#include + /* macros */ #define MIN(a, b) ((a) < (b) ? (a) : (b)) #define MAX(a, b) ((a) < (b) ? (b) : (a)) @@ -77,7 +80,6 @@ void die(const char *, ...); void redraw(void); void draw(void); -void iso14755(const Arg *); void printscreen(const Arg *); void printsel(const Arg *); void sendbreak(const Arg *); @@ -112,7 +114,7 @@ char *xstrdup(char *); extern char *utmp; extern char *stty_args; extern char *vtiden; -extern char *worddelimiters; +extern wchar_t *extrawordchars; extern int allowaltscreen; extern char *termname; extern unsigned int tabspaces;