code vault - strsubstrWhat links here?

Code

//##############################################################################
// return a portion of the source string in the destination
// string.  the portion starts at start and continues for
// length.
//##############################################################################


void strsubstr(int start, int length, char *source, char *dest) { int i, j;

for (i = start, j = 0; (i < strlen(source) && j < length); i++, j++) { dest[j] = source[i]; } dest[j] = '\0'; }
code vault - strsubstr
code vault - readline
MC6802 - assembler - directives - fdb
filename:code vault - strsubstr
filename:code%20vault%20%2D%20strsubstr
last edit:March 26 2009 19:59:50 (-1826744 minutes ago)
ct = 1128507308.000000 = October 05 2005 06:15:08
ft = 1238111990.000000 = March 26 2009 19:59:50
dt = -109604682.000000