shithub: qk1

ref: 78fe6348a53f18d6d477366590d07b75d6833dc3
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++];
}