> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> no code is generated for what looks like valid C source.

First, I do sincerely apologize if this question offends your level of
expertise in troubleshooting this sort of thing, but just to start with
basics for completeness -- are you sure the following 'if' line did not have
an extra accidental semicolon ';' at the end? --

>      if(dstStrLen >= 37)         // --- extra ';' here? ---
>           return dstStrLen;

That sort of easy-to-overlook typo (been there, done that!) could cause the
remainder of the function to generate no code, depending on the compiler's
dead code elimination optimization.

-slj-

Reply via email to