libspades
Ace of Spades library
cp437.h
1#ifndef LIBSPADES_CP437_H
2#define LIBSPADES_CP437_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
7/* Utilities for converting between UTF-8 and Code Page 437 */
8
9void libspades_csUTF8_to_CP437(char *output, const char *input);
10void libspades_CP437_to_csUTF8(char *output, const char *input);
11
12#ifdef __cplusplus
13}
14#endif
15#endif