master
h 13 lines 223 Bytes
Raw
1 /*
2 * SPDX-License-Identifier: GPL-2.0-or-later
3 *
4 * Copyright (c) QEMU contributors
5 */
6 #ifndef QEMU_CP437_H
7 #define QEMU_CP437_H
8
9 #include <stdint.h>
10
11 int unicode_to_cp437(uint32_t codepoint);
12
13 #endif /* QEMU_CP437_H */