aboutsummaryrefslogtreecommitdiffstats
path: root/make/joal-alc-impl-CustomCCode.c
diff options
context:
space:
mode:
Diffstat (limited to 'make/joal-alc-impl-CustomCCode.c')
-rwxr-xr-xmake/joal-alc-impl-CustomCCode.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/make/joal-alc-impl-CustomCCode.c b/make/joal-alc-impl-CustomCCode.c
deleted file mode 100755
index 9207210..0000000
--- a/make/joal-alc-impl-CustomCCode.c
+++ /dev/null
@@ -1,16 +0,0 @@
-int strlen_alc(ALCdevice *device, int param, const char* str) {
- int len = 0;
- if ((device == NULL) && (param == ALC_DEVICE_SPECIFIER)) {
- while (*str != 0) {
- while (*str != 0) {
- ++str;
- ++len;
- }
- ++str;
- ++len;
- }
- return len;
- } else {
- return strlen(str);
- }
-}