Content deleted Content added
Be more explicit about the fact that Cyclone is no longer supported and is not directly usable on most modern platforms. Prominently add the developer’s suggested alternative to point people just looking for a “C alternative” in the right direction. |
m Fixed Formatting for Consistency |
||
Line 90:
if (s == NULL)
return 0;
for (i = 0; i < n; i++, s++)
if (*s == '\0')
return i;
return n;
}
|