summaryrefslogtreecommitdiff
path: root/src/strops.cpp
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2025-10-04 17:18:58 +0200
committerAldrik Ramaekers <aldrikboy@gmail.com>2025-10-04 17:18:58 +0200
commit83cbf0e4a142ab2c57fd4fdfc056517b7149828b (patch)
treead12636f5e01e8a70dcefcee01ee9f84f4f0edab /src/strops.cpp
parentf9f1955748a3b369f0a015405af131c9b6e3285c (diff)
namespace administration reader + writer
Diffstat (limited to 'src/strops.cpp')
-rw-r--r--src/strops.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strops.cpp b/src/strops.cpp
index 303b64c..f8184f1 100644
--- a/src/strops.cpp
+++ b/src/strops.cpp
@@ -23,7 +23,7 @@
namespace strops {
- bool prefix(const char *pre, const char *str)
+ bool is_prefixed(const char *pre, const char *str)
{
return strncmp(pre, str, strlen(pre)) == 0;
}