Если у меня есть два типа строк:
const char *str1 = "This is a string with \"quotes escaped at the end\"";
const char *str2 = "This is a \"string\" without quotes at the end";
testFn(str1);
testFn(str2);
int testFn(const char *str)
{
// test & return 1 if ends on no quote
// test & return 0 if ends on quote
return;
}
Я хотел бы проверить, заканчивается ли строка кавычкой "или нет
Что было бы хорошим способом проверить это? Спасибо