Lines Matching refs:coding_history
178 /* Special case for coding_history because we may want to append. */
179 if (info->coding_history != NULL)
181 { int slen = (int) strlen (binfo.coding_history) ;
183 while (slen > 1 && isspace (binfo.coding_history [slen - 1]))
186 memcpy (binfo.coding_history + slen, info->coding_history, sizeof (binfo.coding_history) - slen) ;
189 { size_t slen = MIN (strlen (info->coding_history), sizeof (binfo.coding_history)) ;
191 memset (binfo.coding_history, 0, sizeof (binfo.coding_history)) ;
192 memcpy (binfo.coding_history, info->coding_history, slen) ;