mirror of
https://codeberg.org/pronounscc/pronouns.cc.git
synced 2025-02-12 23:03:37 +01:00
11 lines
222 B
Go
11 lines
222 B
Go
// Package common contains functions and types common to all (or most) packages.
|
|
package common
|
|
|
|
import "unicode/utf8"
|
|
|
|
func StringLength(s *string) int {
|
|
if s == nil {
|
|
return -1
|
|
}
|
|
return utf8.RuneCountInString(*s)
|
|
}
|