I have this:
foo(cons char *p);
foo not is my function, and I don't have access to your source code.
I'm trying use foo so:
char val[32];
foo(val);
The result of foo is zero and not the desired string.
Other tries:
This work:
foo("something here");
This don't work:
foo((cons char *) val);
How I can make this "connversion"?
Note: I'm using pure C, nothing in C++.
Thank You.