// Copyright (c) 1999-2000 David Muse
// See the COPYING file for more information.

#ifndef ENCODING_H
#define ENCODING_H

class encoding {
	public:
			encoding();
		virtual	~encoding();

		void	httpEscape(char *input, char **output); 
				// http escapes string input and returns it 
				// in string output.  output is allocated 
				// inside the escape() function.
};

#endif