aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/iconv.h
blob: f5f3f25786fb734ee52529da3d547aa616b28c8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef NVIM_ICONV_H
#define NVIM_ICONV_H

#include <errno.h>
#include <iconv.h>

#include "auto/config.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  // NVIM_ICONV_H