This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Functions | |
func | clean_string (s)[buf, t] |
Translates non-printable characters to printable equivalents. More... | |
func | fold_newlines (s)[buf, p, q, i] |
Collapse newlines into spaces. More... | |
func | sh_quote (s)[r, p] |
Quote a string, suitable for passing it as a command-line parameter. More... | |
func | softwrap (str, width)[result, p] |
Break a string into multiple lines no longer than a particular length. More... |
Definition in file zformat.vtc.
|
Translates non-printable characters to printable equivalents. Character code 1 is converted to "^A", 2 to "^B", etc.
Definition at line 20 of file zformat.vtc. Referenced by make_line(), and zephyr_output().
|
|
Collapse newlines into spaces. Also removes leading and trailing whitespace on each line.
Definition at line 44 of file zformat.vtc. Referenced by make_line(), and zephyr_output().
|
|
Quote a string, suitable for passing it as a command-line parameter.
Definition at line 76 of file zformat.vtc. Referenced by zout_std_args().
|
|
Break a string into multiple lines no longer than a particular length.
Like the vt
Definition at line 98 of file zformat.vtc. Referenced by zephyr_outbound().
|