home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
kaffe-0.5p4-src.tgz
/
tar.out
/
contrib
/
kaffe
/
kaffevm
/
paths.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-28
|
656b
|
32 lines
/*
* path.h
* Path support routines.
*
* Copyright (c) 1996 Systems Architecture Research Centre,
* City University, London, UK.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* Written by Tim Wilkinson <tim@sarc.city.ac.uk>, June 1996.
*/
#ifndef __paths_h
#define __paths_h
/* Maximum internal path length */
#define MAXPATHLEN 1024
#if defined(__WIN32__) || defined(__OS2__)
#define PATHSEP ';'
#define DIRSEP "\\"
#elif defined(__amigaos__)
#define PATHSEP ';'
#define DIRSEP "/"
#else
#define PATHSEP ':'
#define DIRSEP "/"
#endif
#endif