Lines Matching full:suffix
195 char *suffix; in create_file_names() local
201 /* does the output_file_name have a known suffix */ in create_file_names()
202 if ((suffix = strrchr(output_file_name, '.')) != 0 && in create_file_names()
203 (!strcmp(suffix, ".c") || /* good, old-fashioned C */ in create_file_names()
204 !strcmp(suffix, ".C") || /* C++, or C on Windows */ in create_file_names()
205 !strcmp(suffix, ".cc") || /* C++ */ in create_file_names()
206 !strcmp(suffix, ".cxx") || /* C++ */ in create_file_names()
207 !strcmp(suffix, ".cpp"))) {/* C++ (Windows) */ in create_file_names()
209 suffix - output_file_name + 1); in create_file_names()
210 defines_file_name[suffix - output_file_name + 1] = 'h'; in create_file_names()
211 defines_file_name[suffix - output_file_name + 2] = '\0'; in create_file_names()
213 fprintf(stderr, "%s: suffix of output file name %s" in create_file_names()