/**
* virBufferGrow:
- * @buf: the buffer
- * @len: the minimum free size to allocate on top of existing used space
+ * @buf: the buffer
+ * @len: the minimum free size to allocate on top of existing used space
*
* Grow the available space of a buffer to at least @len bytes.
*
/**
* virBufferAsprintf:
* @buf: the buffer to append to
- * @format: the format
- * @...: the variable list of arguments
+ * @format: the format
+ * @...: the variable list of arguments
*
* Do a formatted print to an XML buffer. Auto indentation may be applied.
*/
/**
* virBufferVasprintf:
* @buf: the buffer to append to
- * @format: the format
- * @argptr: the variable list of arguments
+ * @format: the format
+ * @argptr: the variable list of arguments
*
* Do a formatted print to an XML buffer. Auto indentation may be applied.
*/
virBufferEscape(buf, '\\', "\\'", format, str);
}
-/* Work around spurious strchr() diagnostics given by -Wlogical-op *
+/* Work around spurious strchr() diagnostics given by -Wlogical-op
* for gcc < 4.6. Doing it via a local pragma keeps the damage
* smaller than disabling it on the package level. Unfortunately, the
* affected GCCs don't allow diagnostic push/pop which would have
/**
* virBufferURIEncodeString:
* @buf: the buffer to append to
- * @str: the string argument which will be URI-encoded
+ * @str: the string argument which will be URI-encoded
*
* Append the string to the buffer. The string will be URI-encoded
* during the append (ie any non alpha-numeric characters are replaced
/**
* virBufferStrcat:
* @buf: the buffer to append to
- * @...: the variable list of strings, the last argument must be NULL
+ * @...: the variable list of strings, the last argument must be NULL
*
* Concatenate strings to an XML buffer. Auto indentation may be applied
* after each string argument.