mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
vsh-table.h: Modernize declarations
Use modern style of function declarations where the return type and function name are on two separate lines. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
74c6c8e679
commit
2ac0e4c347
@ -24,9 +24,18 @@
|
||||
|
||||
typedef struct _vshTable vshTable;
|
||||
|
||||
void vshTableFree(vshTable *table);
|
||||
vshTable *vshTableNew(const char *format, ...);
|
||||
int vshTableRowAppend(vshTable *table, const char *arg, ...);
|
||||
void vshTablePrintToStdout(vshTable *table, vshControl *ctl);
|
||||
char *vshTablePrintToString(vshTable *table, bool header);
|
||||
void
|
||||
vshTableFree(vshTable *table);
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC(vshTable, vshTableFree);
|
||||
|
||||
vshTable *
|
||||
vshTableNew(const char *format, ...);
|
||||
|
||||
int
|
||||
vshTableRowAppend(vshTable *table, const char *arg, ...);
|
||||
|
||||
void
|
||||
vshTablePrintToStdout(vshTable *table, vshControl *ctl);
|
||||
|
||||
char *
|
||||
vshTablePrintToString(vshTable *table, bool header);
|
||||
|
Loading…
Reference in New Issue
Block a user