File: chdir.c

package info (click to toggle)
squashfs-tools-ng 1.3.2-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,612 kB
  • sloc: ansic: 26,145; sh: 616; makefile: 53
file content (34 lines) | stat: -rw-r--r-- 543 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* SPDX-License-Identifier: GPL-3.0-or-later */
/*
 * chdir.c
 *
 * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
 */
#include "config.h"
#include "compat.h"

#ifdef _WIN32
#include <stdlib.h>
#include <stdio.h>

int chdir(const char *path)
{
	WCHAR *wpath;
	int ret;

	wpath = path_to_windows(path);
	if (wpath == NULL)
		return -1;

	if (!SetCurrentDirectoryW(wpath)) {
		fprintf(stderr, "Switching to directory '%s': %ld\n",
			path, GetLastError());
		ret = -1;
	} else {
		ret = 0;
	}

	free(wpath);
	return ret;
}
#endif