| 3843 | // |
| 3844 | |
| 3845 | static void make_name_formatted(TEXT* const string, const TEXT* format, |
| 3846 | const gpre_sym* symbol) |
| 3847 | { |
| 3848 | fb_utils::snprintf(string, MAX_CURSOR_SIZE, format, symbol->sym_string); |
| 3849 | for (TEXT* s = string; *s; s++) |
| 3850 | { |
| 3851 | if (*s == '_') |
| 3852 | *s = '-'; |
| 3853 | } |
| 3854 | } |
| 3855 | |
| 3856 | |
| 3857 | //____________________________________________________________ |
no test coverage detected