Parent: [91df3a] (diff)

Child: [3872f8] (diff)

Download this file

transcode.h    14 lines (11 with data), 391 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#ifndef _TRANSCODE_H_INCLUDED_
#define _TRANSCODE_H_INCLUDED_
/* @(#$Id: transcode.h,v 1.2 2005-01-25 14:37:21 dockes Exp $ (C) 2004 J.F.Dockes */
/**
* A very minimal c++ized interface to iconv
*/
#include <string>
extern bool transcode(const std::string &in, std::string &out,
const std::string &icode,
const std::string &ocode);
#endif /* _TRANSCODE_H_INCLUDED_ */