[go: up one dir, main page]

File: os.h

package info (click to toggle)
fastdep 0.16-13
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 600 kB
  • ctags: 327
  • sloc: cpp: 2,161; ansic: 814; sh: 208; makefile: 123
file content (12 lines) | stat: -rw-r--r-- 227 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __OS_H__
#define __OS_H__

#ifdef WIN32
static const char  cPathSep = '\\' ;
static const char* sPathSep = "\\" ;
#else
static const char  cPathSep = '/' ;
static const char* sPathSep = "/" ;
#endif

#endif // __OS_H__