Skip to content

Faster strlen implementation. Checks 8 characters at a time

James Francis requested to merge jamespcfrancis/relibc:faster_strlen into master
  • 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.

Merge request reports