PR c++/85515
[official-gcc.git] / libgo / go / os / path_plan9.go
blobb09b53a3d828cb500f8ba6dc5c396c4a7e5fbafc
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 = '\000' // OS-specific path list separator
12 // IsPathSeparator reports whether c is a directory separator character.
13 func IsPathSeparator(c uint8) bool {
14 return PathSeparator == c