C言語のお勉強ページに対するご意見・ご感想スレ
50:へなちょこ管理人 ★2009/07/03(金) 21:12:06
char *str_chr(const char *str, int c)
{
char * res;

while(*str){
if(*str == (char)c){
res = str;
return res;
str++;
}

return NULL;
}

こうかな
1-AA