Fix tester_v3_c base-dir split on Windows paths

parse_path_for_test() split the file path on '/' only, so a Windows
style arg like models\Cube\Cube.gltf produced an empty base dir and
external buffers (Cube.bin) failed to resolve. Split on '\' too.
diff --git a/tests/tester_v3_c.c b/tests/tester_v3_c.c
index c85ac70..fbc6edc 100644
--- a/tests/tester_v3_c.c
+++ b/tests/tester_v3_c.c
@@ -1409,6 +1409,7 @@
   }
 
   slash = strrchr(path, '/');
+  if (!slash) slash = strrchr(path, '\\');
   base_len = slash ? (uint32_t)(slash - path) : 0;
   err = tg3_parse_auto(model, errors, buf, (uint64_t)sz, path, base_len, opts);
   free(buf);