aboutsummaryrefslogtreecommitdiff
path: root/lib/compat/path_to_windows.c
blob: ff3a5d2b0512740b5c66be8b25d702aa44c41e2a (plain)
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
35
36
37
38
39
40
41
42
43
/* SPDX-License-Identifier: GPL-3.0-or-later */
/*
 * path_to_windows.c
 *
 * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
 */
#include "config.h"
#include "compat.h"

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

#if defined(_WIN32) || defined(__WINDOWS__)
WCHAR *path_to_windows(const char *input)
{
	WCHAR *wpath, *ptr;
	DWORD length;

	length = MultiByteToWideChar(CP_UTF8, 0, input, -1, NULL, 0);
	if (length <= 0) {
		fprintf(stderr, "Converting UTF-8 path to UTF-16: %ld\n",
			GetLastError());
		return NULL;
	}

	wpath = calloc(sizeof(wpath[0]), length + 1);
	if (wpath == NULL) {
		fprintf(stderr,
			"Converting UTF-8 path to UTF-16: out of memory\n");
		return NULL;
	}

	MultiByteToWideChar(CP_UTF8, 0, input, -1, wpath, length + 1);
	wpath[length] = '\0';

	for (ptr = wpath; *ptr != '\0'; ++ptr) {
		if (*ptr == '/')
			*ptr = '\\';
	}

	return wpath;
}
#endif