blob: a241c653d27b511a15768ee5e831e8622ae277cd (
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
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1997, 2015 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
#include "db_config.h"
#include "db_int.h"
/*
* __os_abspath --
* Return if a path is an absolute path.
*
* PUBLIC: int __os_abspath __P((const char *));
*/
int
__os_abspath(path)
const char *path;
{
return (path[0] == '/');
}
|