filename.h 433 B

12345678910111213141516171819
  1. // Filename: filename.h
  2. // Created by: drose (19Oct00)
  3. //
  4. ////////////////////////////////////////////////////////////////////
  5. #ifndef FILENAME_H
  6. #define FILENAME_H
  7. #include "ppremake.h"
  8. // This header file defines a few functions handy for dealing with
  9. // filenames in a cross-platform world.
  10. bool is_fullpath(const string &pathname);
  11. string to_os_filename(string pathname);
  12. string to_unix_filename(string pathname);
  13. #endif