aboutsummaryrefslogtreecommitdiff
path: root/win.h
diff options
context:
space:
mode:
authorNRK <nrk@disroot.org>2022-01-07 23:21:04 +0600
committerHiltjo Posthuma <hiltjo@codemadness.org>2022-04-19 11:43:37 +0200
commit8629d9a1da72cc18568a8f146307b0e939b77ebf (patch)
treee7237647a29f5888b916567f9c5290fda436a087 /win.h
parentef0551932fb162f907b40185d2f48c3b497708ee (diff)
downloadst-patched-8629d9a1da72cc18568a8f146307b0e939b77ebf.tar.bz2
st-patched-8629d9a1da72cc18568a8f146307b0e939b77ebf.tar.xz
st-patched-8629d9a1da72cc18568a8f146307b0e939b77ebf.zip
code-golfing: cleanup osc color related code
* adds missing function prototype * move xgetcolor() prototype to win.h (that's where all the other x.c func prototype seems to be declared at) * check for snprintf error/truncation * reduces code duplication for osc 10/11/12 * unify osc_color_response() and osc4_color_response() into a single function the latter two was suggested by Quentin Rameau in his patch review on the hackers list.
Diffstat (limited to 'win.h')
-rw-r--r--win.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/win.h b/win.h
index e6e4369..6de960d 100644
--- a/win.h
+++ b/win.h
@@ -30,6 +30,7 @@ void xdrawline(Line, int, int, int);
30void xfinishdraw(void); 30void xfinishdraw(void);
31void xloadcols(void); 31void xloadcols(void);
32int xsetcolorname(int, const char *); 32int xsetcolorname(int, const char *);
33int xgetcolor(int, unsigned char *, unsigned char *, unsigned char *);
33void xseticontitle(char *); 34void xseticontitle(char *);
34void xsettitle(char *); 35void xsettitle(char *);
35int xsetcursor(int); 36int xsetcursor(int);