initial commit

This commit is contained in:
TLINDEN
2013-10-28 22:50:05 +01:00
parent 92c0dcbebf
commit 2d7babae35
113 changed files with 61619 additions and 4 deletions

19
src/z85util.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef _HAVE_PCP_Z85
#define _HAVE_PCP_Z85
#define _BSD_SOURCE
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
#include "mem.h"
#include "z85.h"
#include "zmq_z85.h"
#include "defines.h"
int pcpz85_encode(char *infile, char *outfile);
int pcpz85_decode(char *infile, char *outfile);
#endif