Is there something like startsWith(str_a, str_b) in the standard C library?
startsWith(str_a, str_b)
It should take pointers to two strings that end with nullbytes, and tell me
Use strstr() function. Stra == strstr(stra, strb)
strstr()
Stra == strstr(stra, strb)