I have a compressed unsigned char
array of a known size. Due to compression considiration I don't store the null-terminator at the end. I want to compare it to another array of the same format. What
would be the best way to do so?
I thought duplicating the comparessed arrays to a new array, add the null-terminator, and then compare them using strcmp()
.
Any better suggestions?
you can use
strncmp()
function fromstring.h
Here you can manually give the size of string(or the number of characters that you want to compare).
strlen()
may not work to get the length of your string because your strings are not terminated with theNUL
character.UPDATE:
see the code for comparison of unsigned char array