blob: b7ff678a5b5648dc6775e1b880e3bee85211d538 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/**
* \file path_isabsolute.c
* \brief Determines if a path is absolute or relative.
* \author Copyright (c) 2002-2009 Jason Perkins and the Premake project
*/
#include "premake.h"
int path_isabsolute(lua_State* L)
{
const char* path = luaL_checkstring(L, -1);
if (is_absolute_path(path)) {
lua_pushboolean(L, 1);
return 1;
}
return 0;
}
|