mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-12 06:18:39 +00:00
9 lines
158 B
Odin
9 lines
158 B
Odin
package filepath
|
|
|
|
SEPARATOR :: '\\'
|
|
SEPARATOR_STRING :: `\`
|
|
LIST_SEPARATOR :: ';'
|
|
|
|
is_UNC :: proc(path: string) -> bool {
|
|
return len(volume_name(path)) > 2
|
|
} |