When I do stuff like this, I do it this way:

Char    LRC[2];

LRC[0] = makeLRCByte(str);
LRC[1]='\0';
StrCat(tempBuf, LRC);


Alan Pinstein
Synergy Solutions, Inc.
http://www.synsolutions.com
1-800-210-5293


>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