File: simple_recode.h

package info (click to toggle)
whois 5.6.5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 588 kB
  • sloc: ansic: 2,408; perl: 206; makefile: 153; sh: 109
file content (15 lines) | stat: -rw-r--r-- 381 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0-or-later */
#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