Daily bump.
[official-gcc.git] / libgo / go / os / path_windows.go
blob61f2ca59ff41cd2321fe1cae2cfa64f8907a7dcf
1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 package os
7 const (
8 PathSeparator = '\\' // OS-specific path separator
9 PathListSeparator = ';' // OS-specific path list separator
12 // IsPathSeparator returns true if c is a directory separator character.
13 func IsPathSeparator(c uint8) bool {
14 // NOTE: Windows accept / as path separator.
15 return c == '\\' || c == '/'