19 #define MB_BYTE2LEN(b) utf8len_tab[b] 20 #define MB_BYTE2LEN_CHECK(b) (((b) < 0 || (b) > 255) ? 1 : utf8len_tab[b]) 28 #define ENC_UNICODE 0x04 30 #define ENC_ENDIAN_B 0x10 31 #define ENC_ENDIAN_L 0x20 33 #define ENC_2BYTE 0x40 34 #define ENC_4BYTE 0x80 35 #define ENC_2WORD 0x100 37 #define ENC_LATIN1 0x200 38 #define ENC_LATIN9 0x400 39 #define ENC_MACROMAN 0x800 42 #define mb_ptr2len utfc_ptr2len 43 #define mb_char2len utf_char2len 44 #define mb_char2cells utf_char2cells 56 #define MBYTE_NONE_CONV { \ 57 .vc_type = CONV_NONE, \ 77 #ifdef INCLUDE_GENERATED_DECLARATIONS 78 # include "mbyte.h.generated.h" 81 static inline int mb_strcmp_ic(
bool ic,
const char *s1,
const char *s2)
89 static inline int mb_strcmp_ic(
bool ic,
const char *s1,
const char *s2)
91 return (ic ?
mb_stricmp(s1, s2) : strcmp(s1, s2));
93 #endif // NVIM_MBYTE_H
int vc_type
Zero or more ConvFlags.
Definition: mbyte.h:64
bool vc_fail
Definition: mbyte.h:69
int vc_factor
Maximal expansion factor.
Definition: mbyte.h:65
int mb_stricmp(const char *s1, const char *s2)
Definition: mbyte.c:1529
static int REAL_FATTR_WARN_UNUSED_RESULT
Definition: typval_encode.c.h:295
#define REAL_FATTR_NONNULL_ALL
Definition: func_attr.h:183
const uint8_t utf8len_tab_zero[256]
Definition: mbyte.c:104
const uint8_t utf8len_tab[256]
Definition: mbyte.c:83
ConvFlags
Flags for vimconv_T.
Definition: mbyte.h:47
#define REAL_FATTR_PURE
Definition: func_attr.h:163
Structure used for string conversions.
Definition: mbyte.h:63