package term

// MoveCursorUp moves the cursor up i lines.
func ( int) {
	if  < 1 {
		return
	}

	printf("\x1b[%dA", )
}

// MoveCursorDown moves the cursor down i lines.
func ( int) {
	if  < 1 {
		return
	}

	printf("\x1b[%dB", )
}

// MoveCursorForwards moves the cursor forward i columns.
func ( int) {
	if  < 1 {
		return
	}

	printf("\x1b[%dC", )
}

// MoveCursorBackwards moves the cursor backward i columns.
func ( int) {
	if  < 1 {
		return
	}

	printf("\x1b[%dD", )
}