Add const qualifier to source parameters in zmq_z85_decode and zmq_z85_encode

This commit is contained in:
Kapp Arnaud
2014-08-14 00:00:00 +02:00
parent fadb2a38d9
commit fbdc5aa22d
4 changed files with 7 additions and 7 deletions

View File

@@ -111,7 +111,7 @@ static uint8_t decoder [96] = {
// dest. Size must be a multiple of 4.
// Returns NULL and sets errno = EINVAL for invalid input.
char *zmq_z85_encode (char *dest, uint8_t *data, size_t size)
char *zmq_z85_encode (char *dest, const uint8_t *data, size_t size)
{
if (size % 4 != 0) {
errno = EINVAL;
@@ -145,7 +145,7 @@ char *zmq_z85_encode (char *dest, uint8_t *data, size_t size)
// must be a multiple of 5.
// Returns NULL and sets errno = EINVAL for invalid input.
uint8_t *zmq_z85_decode (uint8_t *dest, char *string)
uint8_t *zmq_z85_decode (uint8_t *dest, const char *string)
{
if (strlen (string) % 5 != 0) {
errno = EINVAL;