mirror of
https://github.com/neovim/neovim.git
synced 2025-10-06 18:06:30 +00:00
19 lines
330 B
C
19 lines
330 B
C
#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
|