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
{{ message }}
This repository was archived by the owner on Jun 13, 2025. It is now read-only.
The parse methods in
do not consider utf8 encoded files.
ch, _, _ := r.ReadRune() ii++could be changed to
ch, size, _ := r.ReadRune() ii+=sizeto correctly read multi byte encoded files.