blob: 509f83c415fb20381cc33d7c95c17f948ad48803 (
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
|