mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
20 lines
433 B
C
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
|
|
|