E.g.:
void main()
{
char[10] blue = "blue ";
assert(blue == "blue");
}Obviously these two are different, but what function can I use to compare strings in situations where whitespace is the delimiter?
E.g.:
void main()
{
char[10] blue = "blue ";
assert(blue == "blue");
}Obviously these two are different, but what function can I use to compare strings in situations where whitespace is the delimiter?