mirror of
https://github.com/panda3d/panda3d.git
synced 2026-02-20 06:10:03 -06:00
23 lines
460 B
C
23 lines
460 B
C
/**
|
|
* PANDA 3D SOFTWARE
|
|
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
*
|
|
* All use of this software is subject to the terms of the revised BSD
|
|
* license. You should have received a copy of this license along
|
|
* with this source code in a file named "LICENSE."
|
|
*
|
|
* @file is_pathsep.h
|
|
* @author drose
|
|
* @date 2009-07-07
|
|
*/
|
|
|
|
#ifndef IS_PATHSEP_H
|
|
#define IS_PATHSEP_H
|
|
|
|
inline bool
|
|
is_pathsep(int ch);
|
|
|
|
#include "is_pathsep.I"
|
|
|
|
#endif
|