home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / fontutils-0.6-base.tgz / fontutils-0.6-base.tar / fsf / fontutils / include / c-pathch.h < prev    next >
C/C++ Source or Header  |  1992-07-22  |  2KB  |  66 lines

  1. /* c-pathch.h: define the characters which separate components of
  2.    pathnames and environment variable paths.
  3.  
  4. Copyright (C) 1992 Free Software Foundation, Inc.
  5.  
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. #ifndef C_PATHCH_H
  21. #define C_PATHCH_H
  22.  
  23. /* What separates pathname components?  */
  24. #ifndef PATH_SEP
  25. #ifdef VMS
  26. #define PATH_SEP ':'
  27. #define PATH_SEP_STRING ":"
  28. #else
  29. #ifdef DOS
  30. #define PATH_SEP '\\'
  31. #define PATH_SEP_STRING "\\"
  32. #else
  33. #ifdef VMCMS
  34. #define PATH_SEP ' '
  35. #define PATH_SEP_STRING " "
  36. #else
  37. #define PATH_SEP '/'
  38. #define PATH_SEP_STRING "/"
  39. #endif /* not VM/CMS */
  40. #endif /* not DOS */
  41. #endif /* not VMS */
  42. #endif /* not PATH_SEP */
  43.  
  44. /* What separates elements in environment variable path lists?  */
  45. #ifndef PATH_DELIMITER
  46. #ifdef VMS
  47. #define PATH_DELIMITER ','
  48. #define PATH_DELIMITER_STRING ","
  49. #else
  50. #ifdef DOS
  51. #define PATH_DELIMITER ';'
  52. #define PATH_DELIMITER_STRING ";"
  53. #else
  54. #ifdef VMCMS
  55. #define PATH_DELIMITER ' '
  56. #define PATH_DELIMITER_STRING " "
  57. #else
  58. #define PATH_DELIMITER ':'
  59. #define PATH_DELIMITER_STRING ":"
  60. #endif /* not VM/CMS */
  61. #endif /* not DOS */
  62. #endif /* not VMS */
  63. #endif /* not PATH_DELIMITER */
  64.  
  65. #endif /* not C_PATHCH_H */
  66.