#ifndef SHARED_TRANSLATE_URL_H #define SHARED_TRANSLATE_URL_H /* substitutes for special chars */ #define QMARK_SUB '|' #define AMP_SUB ']' #define EQUAL_SUB '^' #define POUND_SUB '`' void translate_url_substitutes (char *to, char *from, int maxlen, int try_xhtml_compatible); #endif