2024-09-18 00:13:48 +02:00

6 lines
97 B
Go

package common
func CursorToCharacterIndex(cursor uint32) uint32 {
return max(1, cursor) - 1
}