mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-18 20:30:58 +01:00
merge z85 bugfix#903 from https://github.com/zeromq/libzmq/pull/2322
This commit is contained in:
@@ -20,12 +20,15 @@
|
||||
#ifndef __ZMQ_Z85_H_INCLUDED__
|
||||
#define __ZMQ_Z85_H_INCLUDED__
|
||||
|
||||
#define __STDC_LIMIT_MACROS
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <errno.h>
|
||||
|
||||
uint8_t *zmq_z85_decode (uint8_t *dest, char *string);
|
||||
char *zmq_z85_encode (char *dest, uint8_t *data, size_t size);
|
||||
uint8_t *zmq_z85_decode (uint8_t *dest, const char *string);
|
||||
char *zmq_z85_encode (char *dest, const uint8_t *data, size_t size);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user