diff options
Diffstat (limited to 'src/nvim/ascii.h')
| -rw-r--r-- | src/nvim/ascii.h | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/src/nvim/ascii.h b/src/nvim/ascii.h index adde91f9ec..ff6840d690 100644 --- a/src/nvim/ascii.h +++ b/src/nvim/ascii.h @@ -3,6 +3,7 @@  #include <stdbool.h> +#include "nvim/macros.h"  #include "nvim/func_attr.h"  #include "nvim/os/os_defs.h" @@ -98,6 +99,10 @@ static inline bool ascii_isxdigit(int)    REAL_FATTR_CONST    REAL_FATTR_ALWAYS_INLINE; +static inline bool ascii_isident(int) +  REAL_FATTR_CONST +  REAL_FATTR_ALWAYS_INLINE; +  static inline bool ascii_isbdigit(int)    REAL_FATTR_CONST    REAL_FATTR_ALWAYS_INLINE; @@ -138,6 +143,14 @@ static inline bool ascii_isxdigit(int c)           || (c >= 'A' && c <= 'F');  } +/// Checks if `c` is an “identifier” character +/// +/// That is, whether it is alphanumeric character or underscore. +static inline bool ascii_isident(int c) +{ +  return ASCII_ISALNUM(c) || c == '_'; +} +  /// Checks if `c` is a binary digit, that is, 0-1.  ///  /// @see {ascii_isdigit} | 
