mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 23:39:51 +03:00
16 lines
270 B
C
16 lines
270 B
C
|
#ifndef NS_ATARI_ENCODING_H
|
||
|
#define NS_ATARI_ENCODING_H
|
||
|
|
||
|
#include <inttypes.h>
|
||
|
#include <assert.h>
|
||
|
#include <stdbool.h>
|
||
|
#include <windom.h>
|
||
|
|
||
|
#include "css/css.h"
|
||
|
#include "render/font.h"
|
||
|
#include "utils/utf8.h"
|
||
|
|
||
|
int atari_to_ucs4( unsigned char atarichar);
|
||
|
|
||
|
#endif
|