]> Sergey Matveev's repositories - nnn.git/commitdiff
Prefer inline for single liner
authorArun Prakash Jana <engineerarun@gmail.com>
Wed, 20 Oct 2021 14:59:15 +0000 (20:29 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Wed, 20 Oct 2021 14:59:15 +0000 (20:29 +0530)
src/nnn.c

index 238af1aa1b7712b3bf0ba6d47b59a1aefaa3dc9f..d4e0261983c73d1bd7ad14d902be03904c3d7709 100644 (file)
--- a/src/nnn.c
+++ b/src/nnn.c
 #define ISBLANK(x)      ((x) == ' ' || (x) == '\t')
 #define TOUPPER(ch)     (((ch) >= 'a' && (ch) <= 'z') ? ((ch) - 'a' + 'A') : (ch))
 #define TOLOWER(ch)     (((ch) >= 'A' && (ch) <= 'Z') ? ((ch) - 'A' + 'a') : (ch))
-#define ISUPPER_(ch)     ((ch) >= 'A' && (ch) <= 'Z')
-#define ISLOWER_(ch)     ((ch) >= 'a' && (ch) <= 'z')
+#define ISUPPER_(ch)    ((ch) >= 'A' && (ch) <= 'Z')
+#define ISLOWER_(ch)    ((ch) >= 'a' && (ch) <= 'z')
 #define CMD_LEN_MAX     (PATH_MAX + ((NAME_MAX + 1) << 1))
 #define ALIGN_UP(x, A)  ((((x) + (A) - 1) / (A)) * (A))
 #define READLINE_MAX    256
@@ -1016,7 +1016,7 @@ static bool is_suffix(const char *restrict str, const char *restrict suffix)
        return (xstrcmp(str + (lenstr - lensuffix), suffix) == 0);
 }
 
-static bool is_prefix(const char *restrict str, const char *restrict prefix, size_t len)
+static inline bool is_prefix(const char *restrict str, const char *restrict prefix, size_t len)
 {
        return !strncmp(str, prefix, len);
 }