| code vault - strfirst | What links here? |
//############################################################################## // copy the first n characters from the source string to the // destination string //##############################################################################
void strfirst(int n, char *source, char *dest) { int i;
for (i = 0; (i < n) && (i < strlen(source)); i++) { dest[i] = source[i]; } dest[i] = '\0'; }
| filename: | code vault - strfirst |
| filename: | code%20vault%20%2D%20strfirst |
| last edit: | March 26 2009 19:57:36 (-1809965 minutes ago) |
| ct | = 1129513915.000000 = October 16 2005 21:51:55 |
| ft | = 1238111856.000000 = March 26 2009 19:57:36 |
| dt | = -108597941.000000 |