BT TIME UTILS
Simple time formatting utility. Returns current date and time using the requested format.
Uses chrono formatting:
https://docs.rs/chrono/latest/chrono/format/strftime/index.html
```
let (c_time, c_date) = get_current_time_and_date();
let (c_time, c_date) = get_formatted_time_and_date("%H:%M","%B %d, %Y");
```
* *
GPL-3.0-only