diff options
Diffstat (limited to 'WWW/Library/Implementation/HTDOS.h')
-rw-r--r-- | WWW/Library/Implementation/HTDOS.h | 51 |
1 files changed, 26 insertions, 25 deletions
diff --git a/WWW/Library/Implementation/HTDOS.h b/WWW/Library/Implementation/HTDOS.h index cae9cb02..c25f510a 100644 --- a/WWW/Library/Implementation/HTDOS.h +++ b/WWW/Library/Implementation/HTDOS.h @@ -8,37 +8,38 @@ #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 (const char * dosname); + * CONVERTS DOS Name into WWW Name + * ON ENTRY: + * dosname DOS file specification (NO NODE) + * + * ON EXIT: + * returns WWW file specification + * + */ +char *HTDOS_wwwName(const char *dosname); /* * Converts Unix slashes to DOS */ -char * HTDOS_slashes (char * path); +char *HTDOS_slashes(char *path); /* 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 (char * wwwname); - -#ifdef WIN_EX -char * HTDOS_short_name (char * fn); -#else -#define HTDOS_short_name(fn) fn + * 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(char *wwwname); + +#ifdef WIN_EX +char *HTDOS_short_name(char *fn); + +#else +#define HTDOS_short_name(fn) fn #endif #endif /* HTDOS_H */ |