Exemplo n.º 1
0
static void* gt_gff3validator_arguments_new(void)
{
    GFF3ValidatorArguments *arguments = gt_calloc(1, sizeof *arguments);
    arguments->tci = gt_typecheck_info_new();
    arguments->xci = gt_xrfcheck_info_new();
    return arguments;
}
Exemplo n.º 2
0
static void* gt_gff3_arguments_new(void)
{
  GFF3Arguments *arguments = gt_calloc(1, sizeof *arguments);
  arguments->newsource = gt_str_new();
  arguments->offsetfile = gt_str_new();
  arguments->tci = gt_typecheck_info_new();
  arguments->xci = gt_xrfcheck_info_new();
  arguments->ofi = gt_output_file_info_new();
  return arguments;
}