comparison src/s/msdos.h @ 10500:4d77d5230bff

(DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Defined.
author Richard M. Stallman <rms@gnu.org>
date Fri, 20 Jan 1995 23:36:39 +0000
parents 05a06f8f244d
children a0f2ce3200d0
comparison
equal deleted inserted replaced
10499:6368f8d9bf07 10500:4d77d5230bff
204 204
205 /* Define this to a function (Fdowncase, Fupcase) if your file system 205 /* Define this to a function (Fdowncase, Fupcase) if your file system
206 likes that */ 206 likes that */
207 #define FILE_SYSTEM_CASE Fdowncase 207 #define FILE_SYSTEM_CASE Fdowncase
208 208
209 /* Define this to be the separator between devices and paths */
210 #define DEVICE_SEP ':'
211
212 /* We'll support either convention on MSDOG. */
213 #define IS_DIRECTORY_SEP(_c_) ((_c_) == '/' || (_c_) == '\\')
214 #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_) || IS_DEVICE_SEP (_c_))
215
209 /* bcopy under djgpp is quite safe */ 216 /* bcopy under djgpp is quite safe */
210 #define GAP_USE_BCOPY 217 #define GAP_USE_BCOPY
211 #define BCOPY_UPWARD_SAFE 1 218 #define BCOPY_UPWARD_SAFE 1
212 #define BCOPY_DOWNWARD_SAFE 1 219 #define BCOPY_DOWNWARD_SAFE 1
213 220