Home | History | Annotate | Download | only in lib

Lines Matching defs:options

101 /* The default quoting options.  */
104 /* Allocate a new set of quoting options, with contents initially identical
133 set the value of the quoting options for character C to I.
150 set the value of the quoting options flag to I, which can be a
177 /* Return quoting options for STYLE, with no extra quoting. */
755 OPTIONS specifies the quoting options.
762 struct quoting_options const *options)
796 int flags = options->flags | QA_ELIDE_NULL_BYTES;
798 options->style, flags,
799 options->quote_these_too,
800 options->left_quote,
801 options->right_quote);
809 quotearg_buffer_restyled (val, size, arg, argsize, options->style,
810 flags, options->quote_these_too,
811 options->left_quote,
812 options->right_quote);
874 struct quoting_options options;
875 options = default_quoting_options;
876 set_char_quoting (&options, ch, 1);
877 return quotearg_n_options (0, arg, argsize, &options);