blob: b6456b94ba7f2a2b543490f9aa80715998e4c79b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <errno.h>
#include <iconv.h>
// define some missing constants if necessary
#ifndef EILSEQ
# define EILSEQ 123
#endif
#define ICONV_ERRNO errno
#define ICONV_E2BIG E2BIG
#define ICONV_EINVAL EINVAL
#define ICONV_EILSEQ EILSEQ
|