filenames_unix.go 216 B

12345678910111213
  1. // +build !windows,!darwin
  2. package files
  3. import "code.google.com/p/go.text/unicode/norm"
  4. func normalizedFilename(s string) string {
  5. return norm.NFC.String(s)
  6. }
  7. func nativeFilename(s string) string {
  8. return s
  9. }