1/*-
2 * See the file LICENSE for redistribution information.
3 *
4 * Copyright (c) 2006,2008 Oracle.  All rights reserved.
5 *
6 * $Id: os_abs.c,v 1.5 2008/01/08 20:58:44 bostic Exp $
7 */
8
9#include "db_config.h"
10
11#include "db_int.h"
12
13/*
14 * __os_abspath --
15 *	Return if a path is an absolute path.
16 */
17int
18__os_abspath(path)
19	const char *path;
20{
21	return (path[0] == 'f' && path[1] == 's' && path[2] == ':');
22}
23