blob: 3c34de1449be0f54521ce23f21ba8420dccfa7ea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef NVIM_ARABIC_H
#define NVIM_ARABIC_H
#include <stdbool.h>
#define ARABIC_CHAR(ch) (((ch) & 0xFF00) == 0x0600)
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "arabic.h.generated.h"
#endif
#endif // NVIM_ARABIC_H
|