diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2005-01-02 23:49:58 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2005-01-02 23:49:58 -0500 |
commit | 1fc1d8afcb5b9947e2b9665514dbfd1e86c0bf3f (patch) | |
tree | a83fd699321c8545516d56abcda6c9718fd1f4fb /WWW/Library/Implementation/HTUU.h | |
parent | bed9a2c79bfdde6e4ec89d9d02a5d6e88ae12f79 (diff) | |
download | lynx-snapshots-1fc1d8afcb5b9947e2b9665514dbfd1e86c0bf3f.tar.gz |
snapshot of project "lynx", label v2-8-6dev_10
Diffstat (limited to 'WWW/Library/Implementation/HTUU.h')
-rw-r--r-- | WWW/Library/Implementation/HTUU.h | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/WWW/Library/Implementation/HTUU.h b/WWW/Library/Implementation/HTUU.h index 6a0d4a7c..1bd5e6e6 100644 --- a/WWW/Library/Implementation/HTUU.h +++ b/WWW/Library/Implementation/HTUU.h @@ -16,12 +16,18 @@ #include <HTUtils.h> #endif -extern int HTUU_encode(unsigned char *bufin, - unsigned int nbytes, - char *bufcoded); +#ifdef __cplusplus +extern "C" { +#endif + extern int HTUU_encode(unsigned char *bufin, + unsigned int nbytes, + char *bufcoded); -extern int HTUU_decode(char *bufcoded, - unsigned char *bufplain, - int outbufsize); + extern int HTUU_decode(char *bufcoded, + unsigned char *bufplain, + int outbufsize); -#endif /* HTUU_H */ +#ifdef __cplusplus +} +#endif +#endif /* HTUU_H */ |