hex

Hex stream reader / writer
git clone https://git.sinitax.com/sinitax/hex
Log | Files | Refs | LICENSE | sfeed.txt

commit a35e97a83059d83497c0cadaa6d807d18b621edd
parent 37b7f2062cb792ff04aa424a88df8935639dff9f
Author: Louis Burda <quent.burda@gmail.com>
Date:   Tue, 27 Sep 2022 00:53:45 +0200

Fix gap in hexv gradients for 0xFE

Diffstat:
Mhexv.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hexv.c b/hexv.c @@ -16,7 +16,7 @@ static int gradient[256] = { [128 ... 159] = 248, [160 ... 191] = 250, [192 ... 223] = 252, - [224 ... 253] = 254, + [224 ... 254] = 254, [255] = 255, };