Setting the cursor position for a Serial LCD

Do I understand that you do not like to write goTo(34) to go the the 14th column on the 2nd line, but would prefer to write goTo2(2,14)?

void goTo2(int L, int C) {
 gotTo( (L-1)*20+C ) ; 
}