|
in is an input parameter
out is the output parameter
outlength is also an output parameter and is the length of the out array
void fun (unsigned char * in, unsigned char * out, int outlength)
{
}
Since I don't know the length of out, how do I pass out? |
|