summaryrefslogtreecommitdiff
path: root/simple_recode.h
blob: 5fc95b0f49a40186713aaf9b081adfc27f058e30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef SIMPLE_RECODE_H
#define SIMPLE_RECODE_H

#include <iconv.h>
#include <stdio.h>

extern iconv_t simple_recode_iconv_handle;
extern const char *simple_recode_input_charset;

char *simple_recode(const iconv_t handle, const char *str);
int recode_fputs(const char *s, FILE* stream);
void simple_recode_iconv_close(void);

#endif