2006-08-12 23:24:59 +00:00
|
|
|
/*
|
2007-03-21 00:00:27 +00:00
|
|
|
* Copyright (c) 2006-2007 Bjorn Andersson <flex@kryo.se>, Erik Ekman <yarrick@kryo.se>
|
2006-08-12 23:24:59 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ENCODING_H_
|
|
|
|
#define _ENCODING_H_
|
|
|
|
|
2007-06-09 16:18:59 +00:00
|
|
|
struct encoder {
|
|
|
|
char name[8];
|
|
|
|
int (*encode) (char *, size_t *, const void *, size_t);
|
|
|
|
int (*decode) (void *, size_t *, const char *, size_t);
|
|
|
|
int (*places_dots) (void);
|
|
|
|
int (*eats_dots) (void);
|
|
|
|
};
|
2006-08-12 23:24:59 +00:00
|
|
|
|
2007-06-09 16:38:31 +00:00
|
|
|
int unpack_data(char *, size_t, char *, size_t, struct encoder *);
|
|
|
|
int inline_dotify(char *, size_t);
|
|
|
|
int inline_undotify(char *, size_t);
|
2007-06-09 16:18:59 +00:00
|
|
|
|
2007-06-09 16:38:31 +00:00
|
|
|
|
|
|
|
#endif /* _ENCODING_H_ */
|