I have a function that returns 1 Byte that needs to be StrCat'd on the end
of a character string. what is the best way to do this since a byte cannot
be directly StrCat onto a string?

J Jenkins


example:

Byte LRC;

LRC = makeLRCByte(CharPtr stringname);
StrCat(tempbuffer, LRC);

very shoddy example, but it demonstrates what I need to accomplish....

thanks all!

Reply via email to