Welcome to mirror list, hosted at ThFree Co, Russian Federation.

path_isabsolute.c « host « src - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bdde8eb4bb1f3fcf7eaeff3356704ea8cf1042a6 (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
/**
 * \file   path_isabsolute.c
 * \brief  Determines if a path is absolute or relative.
 * \author Copyright (c) 2002-2013 Jason Perkins and the Premake project
 */

#include "premake.h"


int path_isabsolute(lua_State* L)
{
	const char* path = luaL_checkstring(L, -1);
	lua_pushboolean(L, do_isabsolute(path));
	return 1;
}


int do_isabsolute(const char* path)
{
	return (
		path[0] == '/' ||
		path[0] == '\\' ||
		path[0] == '$' ||
		(path[0] == '"' && path[1] == '$') ||
		(path[0] != '\0' && path[1] == ':')
	);
}