diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2023-03-25 08:38:16 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2023-03-25 08:38:16 +0100 |
commit | ce20101ecb912b294b208e6e59b4a7f9214370c3 (patch) | |
tree | f5dad346e829cc727ae51b418704d78e206a53cf /source/kit_test/test.c | |
parent | 3e9760eef4e212b8afe23f5415ef7a37dbfe067d (diff) | |
download | kit-ce20101ecb912b294b208e6e59b4a7f9214370c3.zip |
Microbenchmarks
Diffstat (limited to 'source/kit_test/test.c')
-rw-r--r-- | source/kit_test/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/kit_test/test.c b/source/kit_test/test.c index ed7e7a7..3d3e180 100644 --- a/source/kit_test/test.c +++ b/source/kit_test/test.c @@ -29,7 +29,7 @@ static long long sec_to_ms(long long sec) { enum { white, blue, light, yellow, red, green }; -char const *const color_codes[] = { +static char const *const color_codes[] = { [white] = "\x1b[38m", [blue] = "\x1b[34m", [light] = "\x1b[37m", [yellow] = "\x1b[33m", [red] = "\x1b[31m", [green] = "\x1b[32m" }; |