aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ascii.h
diff options
context:
space:
mode:
authorJason Schulz <jason@schulz.name>2016-01-14 22:33:51 -0800
committerJason Schulz <jason@schulz.name>2016-01-15 20:32:00 -0800
commitf82e982bda49d15f19dbd72531a6c1125d863486 (patch)
tree1010bd5868cd7937371823de131ecdf5e59f48e2 /src/nvim/ascii.h
parent7ad3f077dc68a83b2cdfb7b1d04de9266d7978a9 (diff)
downloadrneovim-f82e982bda49d15f19dbd72531a6c1125d863486.tar.gz
rneovim-f82e982bda49d15f19dbd72531a6c1125d863486.tar.bz2
rneovim-f82e982bda49d15f19dbd72531a6c1125d863486.zip
Fix lint issues
Diffstat (limited to 'src/nvim/ascii.h')
-rw-r--r--src/nvim/ascii.h23
1 files changed, 19 insertions, 4 deletions
diff --git a/src/nvim/ascii.h b/src/nvim/ascii.h
index 9938d1b328..44ff540b40 100644
--- a/src/nvim/ascii.h
+++ b/src/nvim/ascii.h
@@ -85,10 +85,25 @@
# define PATHSEPSTR "/"
#endif
-static inline bool ascii_iswhite(int) REAL_FATTR_ALWAYS_INLINE REAL_FATTR_CONST;
-static inline bool ascii_isdigit(int) REAL_FATTR_ALWAYS_INLINE REAL_FATTR_CONST;
-static inline bool ascii_isxdigit(int) REAL_FATTR_ALWAYS_INLINE REAL_FATTR_CONST;
-static inline bool ascii_isspace(int) REAL_FATTR_ALWAYS_INLINE REAL_FATTR_CONST;
+static inline bool ascii_iswhite(int)
+ REAL_FATTR_CONST
+ REAL_FATTR_ALWAYS_INLINE;
+
+static inline bool ascii_isdigit(int)
+ REAL_FATTR_CONST
+ REAL_FATTR_ALWAYS_INLINE;
+
+static inline bool ascii_isxdigit(int)
+ REAL_FATTR_CONST
+ REAL_FATTR_ALWAYS_INLINE;
+
+static inline bool ascii_isbdigit(int)
+ REAL_FATTR_CONST
+ REAL_FATTR_ALWAYS_INLINE;
+
+static inline bool ascii_isspace(int)
+ REAL_FATTR_CONST
+ REAL_FATTR_ALWAYS_INLINE;
/// Checks if `c` is a space or tab character.
///