Optimize, start porting coreutils (WIP), minor cleanup in codestyle.
Created by: ticki
Merge request reports
Activity
23 23 24 24 /// Get the host from a string (ip) 25 25 pub fn parse_host(string: &str) -> &str { 26 // TODO: Username/Password syntax 27 let pos = match string.find(':') { 26 let pos = match string.find(|c| c == ':' || c == '/') {
Please register or sign in to reply