Initial commit
[convert-base91.git] / base91-0.6.0 / base91.h
CommitLineData
1a1c8cd6
MG
1/*
2 * Copyright (c) 2000-2006 Joachim Henke
3 *
4 * For conditions of distribution and use, see copyright notice in base91.c
5 */
6
7#ifndef BASE91_H
8#define BASE91_H 1
9
10#include <stddef.h>
11
12struct basE91 {
13 unsigned long queue;
14 unsigned int nbits;
15 int val;
16};
17
18void basE91_init(struct basE91 *);
19
20size_t basE91_encode(struct basE91 *, const void *, size_t, void *);
21
22size_t basE91_encode_end(struct basE91 *, void *);
23
24size_t basE91_decode(struct basE91 *, const void *, size_t, void *);
25
26size_t basE91_decode_end(struct basE91 *, void *);
27
28#endif /* base91.h */
This page took 0.010008 seconds and 4 git commands to generate.