shithub: qk1

ref: de3b3f4e656b21469bc4684f55b2b8720e2310fc
dir: /pal.c/

View raw version
#include <u.h>

void
pal2xrgb(int n, s32int *pal, u8int *s, u32int *d)
{
	while(n-- > 0)
		*d++ = pal[*s++];
}