Faster strlen implementation. Checks 8 characters at a time
- The change uses the same implementation glibc uses but written in rust. Checks 8 characters at a time, which speeds up any code which uses strlen.
- Not sure if too unsafe. If someone could check over.
- Maybe future possibility to implement this in the iterator trait.