void print_defines(FILE *pfile) { defmap::iterator it; for (it = defines.begin(); it != defines.end(); ++it) { fprintf(pfile, "define %*.s%s \"%s\"\n", cpd.max_option_name_len - 6, " ", (*it).first.c_str(), (*it).second.c_str()); } }
void print_defines(FILE *pfile) { defmap::iterator it; for (it = defines.begin(); it != defines.end(); ++it) { fprintf(pfile, "define %*.s%s \"%s\"\n", MAX_OPTION_NAME_LEN - 6, " ", (*it).first.c_str(), (*it).second.c_str()); } }