blob: a7c9ad40405ff3d02c05e0823395205dfc8e57b5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef NVIM_ICONV_H
#define NVIM_ICONV_H
#include "auto/config.h"
#ifdef HAVE_ICONV
# 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
#endif
#endif // NVIM_ICONV_H
|