summaryrefslogtreecommitdiff
path: root/archive/src/std/utils.h
blob: c9827a3486c0bcfce4056e5523b59df23ff016ab (plain)
1
2
3
4
#pragma once
#include <stdbool.h>

const char* bool_str(bool input) { return input ? "True" : "False"; }