00001 #ifndef __HOTSPOT_H_
00002 #define __HOTSPOT_H_
00003
00004 #include "util.h"
00005
00006
00007 typedef struct global_config_t_st
00008 {
00009
00010 char flp_file[STR_SIZE];
00011
00012 char p_infile[STR_SIZE];
00013
00014 char t_outfile[STR_SIZE];
00015
00016 char config[STR_SIZE];
00017
00018 char dump_config[STR_SIZE];
00019 }global_config_t;
00020
00021
00022
00023
00024
00025 void global_config_from_strs(global_config_t *config, str_pair *table, int size);
00026
00027
00028
00029
00030 int global_config_to_strs(global_config_t *config, str_pair *table, int max_entries);
00031
00032 #endif