opnsense-ports/converters/mmencode/files/patch-mmencode.c
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

23 lines
753 B
C

--- mmencode.c.orig 2012-12-30 23:29:36.000000000 +0100
+++ mmencode.c 2012-12-30 23:30:33.000000000 +0100
@@ -14,6 +14,7 @@ WITHOUT ANY EXPRESS OR IMPLIED WARRANTIE
*/
#include <stdio.h>
#include <config.h>
+#include <stdlib.h>
#ifdef MSDOS
#include <fcntl.h>
#endif
@@ -21,6 +22,12 @@ WITHOUT ANY EXPRESS OR IMPLIED WARRANTIE
#define BASE64 1
#define QP 2 /* quoted-printable */
+extern void to64(FILE *infile, FILE *outfile, int PortableNewlines);
+extern void from64(FILE *infile, FILE *outfile, char **boundaries, int *boundaryct, int PortableNewlines);
+extern void toqp(FILE *infile, FILE *outfile);
+extern void fromqp(FILE *infile, FILE *outfile, char **boundaries, int *boundaryct);
+
+int
main(argc, argv)
int argc;
char **argv;