diff options
Diffstat (limited to 'src/util_rt.h')
-rw-r--r-- | src/util_rt.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/util_rt.h b/src/util_rt.h index 4d03dc6..eb786a0 100644 --- a/src/util_rt.h +++ b/src/util_rt.h @@ -9,13 +9,13 @@ #if 0 bool prne_strendsw (const char *str, const char *w) { - const size_t len_str = strlen(str); - const size_t len_w = strlen(w); + const size_t len_str = strlen(str); + const size_t len_w = strlen(w); - if (len_str < len_w) { - return false; - } - return strcmp(str + (len_str - len_w), w) == 0; + if (len_str < len_w) { + return false; + } + return strcmp(str + (len_str - len_w), w) == 0; } #endif |