diff options
author | NRK <nrk@disroot.org> | 2022-01-07 23:21:04 +0600 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2022-04-19 11:43:37 +0200 |
commit | 8629d9a1da72cc18568a8f146307b0e939b77ebf (patch) | |
tree | e7237647a29f5888b916567f9c5290fda436a087 /st.h | |
parent | ef0551932fb162f907b40185d2f48c3b497708ee (diff) | |
download | st-8629d9a1da72cc18568a8f146307b0e939b77ebf.tar.gz st-8629d9a1da72cc18568a8f146307b0e939b77ebf.tar.bz2 st-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 'st.h')
-rw-r--r-- | st.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -111,8 +111,6 @@ void *xmalloc(size_t); void *xrealloc(void *, size_t); char *xstrdup(const char *); -int xgetcolor(int x, unsigned char *r, unsigned char *g, unsigned char *b); - /* config.h globals */ extern char *utmp; extern char *scroll; |