panda3d/ppremake/filename.h
2000-10-20 03:28:25 +00:00

20 lines
433 B
C

// Filename: filename.h
// Created by: drose (19Oct00)
//
////////////////////////////////////////////////////////////////////
#ifndef FILENAME_H
#define FILENAME_H
#include "ppremake.h"
// This header file defines a few functions handy for dealing with
// filenames in a cross-platform world.
bool is_fullpath(const string &pathname);
string to_os_filename(string pathname);
string to_unix_filename(string pathname);
#endif