mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-14 19:54:08 +00:00
18 lines
401 B
C
18 lines
401 B
C
/*
|
|
* Copyright (C) 2018 Richard Hughes <richard@hughsie.com>
|
|
* Copyright (C) 2015 Peter Jones <pjones@redhat.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <glib.h>
|
|
|
|
gsize fu_ucs2_strlen (const guint16 *str,
|
|
gssize limit);
|
|
guint16 *fu_uft8_to_ucs2 (const gchar *str,
|
|
gssize max);
|
|
gchar *fu_ucs2_to_uft8 (const guint16 *str,
|
|
gssize max);
|