github.com/varialus/godfly@v0.0.0-20130904042352-1934f9f095ab/src/pkg/os/path_unix.go (about)

     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.
     4  
     5  // +build darwin dragonfly freebsd linux netbsd openbsd
     6  
     7  package os
     8  
     9  const (
    10  	PathSeparator     = '/' // OS-specific path separator
    11  	PathListSeparator = ':' // OS-specific path list separator
    12  )
    13  
    14  // IsPathSeparator returns true if c is a directory separator character.
    15  func IsPathSeparator(c uint8) bool {
    16  	return PathSeparator == c
    17  }