charon-cmd: support multi-line help text for each option in usage

This commit is contained in:
Martin Willi
2013-05-06 15:54:29 +02:00
parent 8e53682cd9
commit d6b0c28b25
2 changed files with 12 additions and 2 deletions
+3 -1
View File
@@ -52,8 +52,10 @@ struct cmd_option_t {
int has_arg;
/** decription of argument */
const char *arg;
/** description to option */
/** short description to option */
const char *desc;
/** additional description lines */
const char *lines[8];
};
/**