mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-03 00:02:45 +00:00
21 lines
543 B
C
21 lines
543 B
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
|
|
*
|
|
* Copyright (C) 2017-2018 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#ifndef __FU_UTIL_COMMON_H__
|
|
#define __FU_UTIL_COMMON_H__
|
|
|
|
#include <glib.h>
|
|
|
|
void fu_util_print_data (const gchar *title,
|
|
const gchar *msg);
|
|
guint fu_util_prompt_for_number (guint maxnum);
|
|
gboolean fu_util_prompt_for_boolean (gboolean def);
|
|
|
|
gboolean fu_util_print_device_tree (GNode *n, gpointer data);
|
|
|
|
#endif /* __FU_UTIL_COMMON_H__ */
|