rpn/src/version.h

20 lines
601 B
C
Raw Normal View History

2015-02-23 17:33:05 +01:00
// version and soft name
2015-07-23 12:00:54 +02:00
static const char version[] = "1.3.3";
static const char uname[] = "rpn v1.3.3, (c) 2013 <louis@rubet.fr>, GNU General Public License";
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[] = {
2015-07-23 12:00:54 +02:00
ATTR_BOLD "R" ATTR_OFF "everse "
ATTR_BOLD "P" ATTR_OFF "olish "
ATTR_BOLD "N" ATTR_OFF "otation language, based on hewlett-Packard RPL",
"",
2015-05-19 17:51:03 +02:00
"Syntax: rpn [command]",
"with optional command = list of commands",
NULL
2015-02-23 17:33:05 +01:00
};
static const char prompt[] = ATTR_BOLD "rpn" ATTR_OFF "> ";