543 char 544 str_get_char_at(const struct mystr* p_str, const unsigned int indexx) 545 { 546 if (indexx >= p_str->len) 547 { 548 bug("bad indexx in str_get_char_at"); 549 } 550 return p_str->p_buf[indexx]; 551 }
下から選んでください: