[Mybusinessbasic-devel] Error corrected
Status: Alpha
Brought to you by:
mikecurry1974
|
From: Michael S. L. <mi...@ha...> - 2003-12-18 22:24:46
|
I corrected the compile error in functions.c by reversing the positions of
lines 1202 and 1204. It looks like this now and compiles without a hitch:
mybbstring fnc_rev(mybbstring s)
{
char *str;
char *p1, *p2;
str = s.str;
if (str || *str)
{
for (p1 = str, p2 = str + strlen(str) - 1; p2 > p1; ++p1,
--p2)
--
Michael St. Laurent
Hartwell Corporation
|