X-Git-Url: https://git.danieliu.xyz/?p=st.git;a=blobdiff_plain;f=st.h;h=3d351b69ea3746bf80de58a1ce1a2b2a4dc30ba5;hp=1015fc6bdd0d1505288651e433db96c5ad21445b;hb=7d59dd715c0b5b219dbb8ac050f2fc07b604e30b;hpb=e0215d53770a9b6bc6e5d7b9a603ecd34dbd7100 diff --git a/st.h b/st.h index 1015fc6..3d351b6 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)) @@ -71,13 +74,13 @@ typedef union { uint ui; float f; const void *v; + const char *s; } Arg; 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 *); @@ -110,10 +113,12 @@ char *xstrdup(char *); /* config.h globals */ extern char *utmp; +extern char *scroll; extern char *stty_args; extern char *vtiden; -extern char *worddelimiters; +extern wchar_t *worddelimiters; extern int allowaltscreen; +extern int allowwindowops; extern char *termname; extern unsigned int tabspaces; extern unsigned int defaultfg;