diff options
author | NRK <nrk@disroot.org> | 2022-01-07 23:21:04 +0600 |
---|---|---|
committer | sinanmohd <pcmsinan@gmail.com> | 2023-01-12 08:21:56 +0530 |
commit | 550cac0ce969710f13584c8d015ba8e21d3e2859 (patch) | |
tree | 6805665fc26ec166ae8e8be31db0e73a32c0a85b /win.h | |
parent | 4b8e562372c8d72e4a9020fecac00d3286802f6a (diff) |
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.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -30,6 +30,7 @@ void xdrawline(Line, int, int, int); void xfinishdraw(void); void xloadcols(void); int xsetcolorname(int, const char *); +int xgetcolor(int, unsigned char *, unsigned char *, unsigned char *); void xseticontitle(char *); void xsettitle(char *); int xsetcursor(int); |