mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-17 20:00:58 +01:00
20 lines
328 B
C
20 lines
328 B
C
|
|
#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
|