pat/utils.go
Chris Keller e94f05f37c Move config, data and state files to XDG locations
Addressing https://github.com/la5nta/pat/issues/216. Includes migration of existing files, plus refactoring of directory access and build info.
2021-08-15 19:35:15 +02:00

13 lines
293 B
Go

// Copyright 2016 Martin Hebnes Pedersen (LA5NTA). All rights reserved.
// Use of this source code is governed by the MIT-license that can be
// found in the LICENSE file.
package main
import (
"unicode"
)
func SplitFunc(c rune) bool {
return unicode.IsSpace(c) || c == ',' || c == ';'
}