On Mon, Apr 08, 2024 at 11:52:22AM +0530, Chaitanya S Prakash wrote: > - Add str_has_suffix() and str_has_prefix() to tools/lib/string.c > - Delete ends_with() and replace its usage with str_has_suffix() > - Delete strstarts() from tools/include/linux/string.h and replace its > usage with str_has_prefix() It should be the other way: starts_with is normal in userspace. C++, Python, Java, C# all have it. JavaScript too!