/* @(#)gen_c_files.c 2.1 93/05/19 */ /******************************************************************************/ /* function : gen_files.c */ /* */ /* subsystem : chgen */ /* */ /* input : */ /* */ /* output : */ /* */ /* returns : void */ /* */ /* author : Steve Smith / Craig Smith */ /* */ /* created : July, 1991 */ /* */ /* revisions : */ /* */ /* description : This routine simply calls all other gen_ routines, which */ /* write to the various output files. */ /* */ /******************************************************************************/ /******************************************************************************/ /* Modified 5/7/96 by Genlog to call gen_pr_log() if cli_log == TRUE */ /******************************************************************************/ #include #include #include "chgen_define.h" #include "chgen_externs.h" #include "prototypes.h" void gen_cc_files() { static char rcsid[] = "$Id: gen_c_files.c,v 1.3.4.1 1999/05/04 16:59:40 jkarner Exp $"; gen_ops(); gen_pr_utils(); gen_pr_init(); gen_pr_add(); gen_load_data(); gen_pr_load(); gen_pr_dump(); gen_pr_free(); gen_pr_delete(); gen_pr_stats(); if (cli_log == TRUE) gen_pr_log(); return; }