static void f_emit_char (int c, struct type *type, struct ui_file *stream, int quoter) { const char *encoding = f_get_encoding (type); generic_emit_char (c, type, stream, quoter, encoding); }
void c_emit_char (int c, struct type *type, struct ui_file *stream, int quoter) { const char *encoding; classify_type (type, get_type_arch (type), &encoding); generic_emit_char (c, type, stream, quoter, encoding); }