| 878 | know of any hosts where this implementation isn't safe. */ |
| 879 | |
| 880 | static char * |
| 881 | make_filename (int num) |
| 882 | { |
| 883 | strcpy (filename_space, prefix); |
| 884 | if (suffix) |
| 885 | sprintf (filename_space + strlen (prefix), suffix, num); |
| 886 | else |
| 887 | sprintf (filename_space + strlen (prefix), "%0*d", digits, num); |
| 888 | return filename_space; |
| 889 | } |
| 890 | |
| 891 | /* Create the next output file. */ |
| 892 |
no outgoing calls
no test coverage detected