summaryrefslogtreecommitdiff
path: root/lib/strlen.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/strlen.h')
-rw-r--r--lib/strlen.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/strlen.h b/lib/strlen.h
deleted file mode 100644
index 2090d25..0000000
--- a/lib/strlen.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#pragma once
-
-#include <cstddef>
-#include <glad/gl.h>
-
-constexpr auto
-constexpr_strlen(const GLchar * const s)
-{
- std::size_t ch {};
- while (s[ch]) {
- ch++;
- }
- return ch;
-}