Codebase list dillo / debian/3.0.5-1 src / decode.h
debian/3.0.5-1

Tree @debian/3.0.5-1 (Download .tar.gz)

decode.h @debian/3.0.5-1raw · history · blame

#ifndef __DECODE_H__
#define __DECODE_H__

#include "../dlib/dlib.h"

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

typedef struct Decode {
   char *buffer;
   Dstr *leftover;
   void *state;
   Dstr *(*decode) (struct Decode *dc, const char *instr, int inlen);
   void (*free) (struct Decode *dc);
} Decode;

Decode *a_Decode_transfer_init(const char *format);
Decode *a_Decode_content_init(const char *format);
Decode *a_Decode_charset_init(const char *format);
Dstr *a_Decode_process(Decode *dc, const char *instr, int inlen);
void a_Decode_free(Decode *dc);

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* __DECODE_H__ */