home *** CD-ROM | disk | FTP | other *** search
- void os2title(int, const char *);
- void os2break(int);
- char *replace_question(const char *);
- void replace_percent(char *);
-
- /* if filename contains '?' character(s),
- free it and replace it with a version that doesn't. */
-
- #define URL_OSCOMPAT(s) { \
- if (strchr(s, '?')) { \
- char *new_s = replace_question(s); \
- free (s); \
- (s) = new_s; \
- } \
- }
-