[EMAIL PROTECTED] wrote:
> "Link Error 'strcat' referenced from 'function' is undefined"
> I'm using strcat in a function. Have added #include <stdio.h>
Try to avoid using standard C library functions like strcat. In this
case, Palm OS has a built-in replacement called StrCat.
If you desperately need to use functions from the MSL (standard C)
library that aren't built into Palm OS, it is often possible (by linking
the right MSL library) but keep in mind this isn't officially supported,
and can cause highly undesirable code bloat. Always look for equivalent
Palm OS functionality first, especially the String Manager APIs.
(I looked in the Knowledge Base but found nothing relevant. This issue
should probably be a FAQ.)
-slj-