filenames_unix.go 422 B

1234567891011121314151617
  1. // Copyright (C) 2014 Jakob Borg and Contributors (see the CONTRIBUTORS file).
  2. // All rights reserved. Use of this source code is governed by an MIT-style
  3. // license that can be found in the LICENSE file.
  4. // +build !windows,!darwin
  5. package files
  6. import "code.google.com/p/go.text/unicode/norm"
  7. func normalizedFilename(s string) string {
  8. return norm.NFC.String(s)
  9. }
  10. func nativeFilename(s string) string {
  11. return s
  12. }