mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-17 06:15:47 +01:00
12 lines
235 B
C
12 lines
235 B
C
#pragma once
|
|
#include <stdint.h>
|
|
|
|
#include "../src/util/colour32.h"
|
|
#include "test.h"
|
|
|
|
int test_colour32_endianess(void *d) {
|
|
(void)d;
|
|
colour32 c = {0xFF000000}; // setting just the red channel
|
|
return assert_true(c.ch.r == 0xFF);
|
|
}
|