about summary refs log blame commit diff stats
path: root/WWW/Library/Implementation/HTDOS.h
blob: 319a63588c70cd4708d8a587b7da1b8982215e28 (plain) (tree)
1
2
3
4
5
6
7
8




                                                  


                      









                                                                               
                                                    











                                                                            
                                           
 
              
                                    

                                 
      

                     
/*             DOS specific routines            */

#ifndef HTDOS_H
#define HTDOS_H

#ifndef HTUTILS_H
#include <HTUtils.h>
#endif /* HTUTILS_H */

/* PUBLIC                                                       HTDOS_wwwName()
**              CONVERTS DOS Name into WWW Name
** ON ENTRY:
**	dosname		DOS file specification (NO NODE)
**
** ON EXIT:
**	returns		WWW file specification
**
*/
char * HTDOS_wwwName PARAMS((CONST char * dosname));


/* PUBLIC                                                       HTDOS_name()
**              CONVERTS WWW name into a DOS name
** ON ENTRY:
**	wwwname		WWW file name
**
** ON EXIT:
**	returns		DOS file specification
**
** Bug:	Returns pointer to static -- non-reentrant
*/
char * HTDOS_name PARAMS((char * wwwname));

#ifdef WIN_EX 
char * HTDOS_short_name (char * fn);
#else 
#define HTDOS_short_name(fn)  fn 
#endif

#endif /*  HTDOS_H */