aboutsummaryrefslogtreecommitdiffstats
path: root/csgocolors.c
blob: e2217417c809533e536f07ffc3d82d2dcdfb6f67 (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

int main()
{
	for (unsigned char i = 0; i < 128; i++)
		printf("%c%04x ", i, i);
	return 0;
}