From 274369e625cd972aa95aa900eb861a6dc5a24712 Mon Sep 17 00:00:00 2001 From: katherine Date: Sun, 25 Mar 2018 14:02:56 -0700 Subject: use word-wrapping for error printing --- doc/interface.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'doc/interface.md') diff --git a/doc/interface.md b/doc/interface.md index e757e80..f8d5886 100644 --- a/doc/interface.md +++ b/doc/interface.md @@ -281,12 +281,15 @@ an alternative method for usage printing. message, if there is one to be printed: ``` -static void simple_opt_print_error(FILE *f, char *command_name, +static void simple_opt_print_error(FILE *f, unsigned width, char *command_name, struct simple_opt_result result); ``` `f` is a file pointer to which the message should be printed. +`width` is the width to which the output should be word-wrapped. if 0, no +wrapping will be performed. see `width` in `simple_opt_print_usage` above. + `command_name` is the name of the command as it will be printed in the usage statement. easiest is just to pass `argv[0]` here. if NULL is passed, "err:" will be printed instead. -- cgit v1.2.3