for(s_y = 0;s_y < 16;s_y++) //s_y가 0이고 s_y가 15일때까지 1씩 증가
 {
  for(s_temp = s_string;(s_byte = (int)*((unsigned char *)s_temp)) != '\0';s_temp++) // ???
  {
   for(s_x = 0;s_x < 8;s_x++)(void)fputs((g_mz_bitmap_font_en[(s_byte << 4) + s_y] & ((unsigned char)(0x80 >> s_x))) ? "O" : " ", stdout); 
  }
  (void)fputs("\n", stdout);
 }
}

  char *s_string[] = {"Bitmap", "Example", "minzkn", (char *)0}; // 케릭터형 s_string 배열 값은 Bitmap Example minzkn 이다?