| code vault - strtail | What links here? | 
//############################################################################## // copy the characters starting at n from the source string // to the destination string //##############################################################################
void strtail(int n, char *source, char *dest) { int i, j;
for (i = n, j = 0; i < strlen(source); i++, j++) { dest[j] = source[i]; } dest[j] = '\0'; }
| filename: | code vault - strtail | 
| filename: | code%20vault%20%2D%20strtail | 
| last edit: | March 26 2009 19:59:12 (-1834954 minutes ago) | 
| ct | = 1128014707.000000 = September 29 2005 13:25:07 | 
| ft | = 1238111952.000000 = March 26 2009 19:59:12 | 
| dt | = -110097245.000000 |