Files
heimdal/appl/ftp/common/base64.h
Assar Westerlund b0f6df58d7 Added lots of Id:s
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@689 ec53bebd-3082-4978-b11e-865c3cabbd6b
1996-08-26 22:48:24 +00:00

10 lines
166 B
C

/* $Id$ */
#ifndef _BASE64_H_
#define _BASE64_H_
int base64_encode(const void *data, int size, char **str);
int base64_decode(const char *str, void *data);
#endif