Make delim const

This commit is contained in:
Nils O. Selåsdal
2013-12-08 22:28:25 +01:00
parent f6badb41a2
commit 6891a77ba9
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ uint8_t* uc_hex_decode(const char *in, size_t maxlen,uint8_t *out);
/** As uc_hex_encode , but inserts the @delim string between each converted
* byte (each 2 hex chars)
*/
char* uc_hex_encode_delim(const uint8_t *in, size_t inlen, char *out, int outlen, char *delim);
char* uc_hex_encode_delim(const uint8_t *in, size_t inlen, char *out, int outlen, const char *delim);
/**
* Convert the string to lowercase, calls tolower() on each char.