aboutsummaryrefslogtreecommitdiff
path: root/src/library.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/library.js')
-rw-r--r--src/library.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/library.js b/src/library.js
index 0726f1a8..543f6f04 100644
--- a/src/library.js
+++ b/src/library.js
@@ -3639,15 +3639,6 @@ LibraryManager.library = {
return pdest|0;
},
- strnlen: function(ptr, num) {
- num = num >>> 0;
- for (var i = 0; i < num; i++) {
- if ({{{ makeGetValue('ptr', 0, 'i8') }}} == 0) return i;
- ptr++;
- }
- return num;
- },
-
strstr: function(ptr1, ptr2) {
var check = 0, start;
do {