// Copyright 2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build unix || (js && wasm) || wasip1

package filepath

import 

func isLocal( string) bool {
	return unixIsLocal()
}

// IsAbs reports whether the path is absolute.
func ( string) bool {
	return strings.HasPrefix(, "/")
}

// volumeNameLen returns length of the leading volume name on Windows.
// It returns 0 elsewhere.
func volumeNameLen( string) int {
	return 0
}

// HasPrefix exists for historical compatibility and should not be used.
//
// Deprecated: HasPrefix does not respect path boundaries and
// does not ignore case when required.
func (,  string) bool {
	return strings.HasPrefix(, )
}

func splitList( string) []string {
	if  == "" {
		return []string{}
	}
	return strings.Split(, string(ListSeparator))
}

func abs( string) (string, error) {
	return unixAbs()
}

func join( []string) string {
	// If there's a bug here, fix the logic in ./path_plan9.go too.
	for ,  := range  {
		if  != "" {
			return Clean(strings.Join([:], string(Separator)))
		}
	}
	return ""
}

func sameWord(,  string) bool {
	return  == 
}