najis

Results 1 comments of najis

I think you can just remove the prefix. If its a `std::string`, I will use `std::string::substr` to remove the `lib` ```cpp std::string s = "libhello"; std::string result = s.substr(3); //...