2015-02-23 17:33:05 +01:00
|
|
|
// version and soft name
|
2015-04-24 09:31:42 +02:00
|
|
|
static const char version[] = "1.3.2";
|
|
|
|
static const char uname[] = "rpn v1.3.2, (c) 2015 <louis@rubet.fr>";
|
2015-02-23 17:33:05 +01:00
|
|
|
|
2015-03-01 16:02:23 +01:00
|
|
|
static const char g_cursor[] = "> ";
|
|
|
|
static const string g_show_stack_separator = "> ";
|
|
|
|
|
2015-02-23 17:33:05 +01:00
|
|
|
// syntax
|
|
|
|
static const char* syntax[] = {
|
|
|
|
"Reverse Polish Notation language, based on hewlett-Packard RPL",
|
|
|
|
"Syntax: rpn [command]",
|
|
|
|
"with optional command = list of commands",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2015-02-12 11:10:00 +01:00
|
|
|
static const char prompt[] = ATTR_BOLD "rpn" ATTR_OFF "> ";
|