Removed redundant inline

This commit is contained in:
Ano-sys
2025-01-12 00:47:37 +01:00
parent f16df9bd21
commit 8cb349ce43
+1 -1
View File
@@ -81,7 +81,7 @@ uint16_t hash_uri(const char *uri){
#include <stdbool.h>
#include <stdint.h>
static inline bool in_range(uint16_t me, uint16_t suc, uint16_t hash) {
static bool in_range(uint16_t me, uint16_t suc, uint16_t hash) {
if (me < suc) {
return (hash > me && hash <= suc);
}