blob: 5e80d1a0e48d591537b4f799e19e8d94ec70966b (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#define COLOR_OFF "\x1b[0m"
#define COLOR_BOLD "\x1b[1m"
#define CLI_PROMPT "(" COLOR_BOLD "pbc" COLOR_OFF ") "
int cli_main();
void rl_printf(const char * fmt, ...);
|