neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

iconv_defs.h (250B)


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