mirror of
https://github.com/rfc1036/whois.git
synced 2026-01-03 06:15:17 +00:00
15 lines
333 B
C
15 lines
333 B
C
#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
|