OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libgo/] [go/] [path/] [filepath/] [path_unix.go] - Blame information for rev 747

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 747 jeremybenn
// Copyright 2010 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 freebsd linux netbsd openbsd
6
 
7
package filepath
8
 
9
import "strings"
10
 
11
// IsAbs returns true if the path is absolute.
12
func IsAbs(path string) bool {
13
        return strings.HasPrefix(path, "/")
14
}
15
 
16
// VolumeName returns the leading volume name on Windows.
17
// It returns "" elsewhere.
18
func VolumeName(path string) string {
19
        return ""
20
}
21
 
22
// HasPrefix tests whether the path p begins with prefix.
23
func HasPrefix(p, prefix string) bool {
24
        return strings.HasPrefix(p, prefix)
25
}

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.