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
tk:tk_entry
programming - C - localtime
tk - tk_frame
programming - DDE - IExplorer DDE Server
programming:c:strftime
programming:Excel
electronics - Generic Array Logic (GAL)
programming - windows - buttons
programming tools - g-plus-plus options
tk
filename:code vault - strsubstr
filename:code%20vault%20%2D%20strsubstr
last edit:March 26 2009 19:59:50 (6346 days ago)
ct = 1786425790.000000 = August 11 2026 01:23:10
ft = 1238111990.000000 = March 26 2009 19:59:50
dt = 548313800.000000