You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Matching is currently performed using the standard lib's strpbrk, which has a very simple implementation (at least in glibc).
However, based on this comment and this source code, that no longer seems to be the case. Do you have any updated thoughts on the optimized strpbrk/strcspn implementation in glibc vs. the strchr implementation?
The text was updated successfully, but these errors were encountered:
The
ALGORITHM.md
file currently states:However, based on this comment and this source code, that no longer seems to be the case. Do you have any updated thoughts on the optimized
strpbrk
/strcspn
implementation in glibc vs. thestrchr
implementation?The text was updated successfully, but these errors were encountered: