mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-05 23:22:12 +00:00
18 lines
365 B
C
18 lines
365 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);
|