This commit is contained in:
2026-06-29 15:56:30 +02:00
commit 6fe57399c4
152 changed files with 32122 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
-module(filepath_ffi).
-export([is_windows/0]).
is_windows() ->
case os:type() of
{win32, _} -> true;
_ -> false
end.