Re: Station name generation
Reply #10 –
Or perhaps break up the print function into two (2 strings), so the pieces are handled separately?
Something like:
if(lang_verb_last) {
printf("%s %s %s",stname,sttype,stloc);
} else {
printf("%s %s %s",sttype,stname,stloc);
}
I know the code is not what is used in ST, but I think it demonstrates the principle. Eh?