aboutsummaryrefslogtreecommitdiff
path: root/client/rl.h
blob: 313a8fe6bb9b2893c52cde1f2448f59843333fa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#define COLOR_OFF "\x1b[0m"
#define COLOR_BOLD "\x1b[1m"

#define CLI_PROMPT "(" COLOR_BOLD "pbc" COLOR_OFF ") "

#ifdef __cplusplus
extern "C" {
#endif

int cli_main();
void rl_printf(const char *fmt, ...);

#ifdef __cplusplus
}
#endif