2006/10/23(月)文字列
文字列が何か同じ文字に括られているかテストする.
if((*line == '"' || *line == '\'') && *line == line[strlen(line) - 1]){
// lineが " か ' でくくられているときに実行される
}
文字列が何か同じ文字に括られているかテストする.
if((*line == '"' || *line == '\'') && *line == line[strlen(line) - 1]){
// lineが " か ' でくくられているときに実行される
}