|
|
|
|
|
|
|
|
|
|
|
|
|
|
int BfrSize = Stopdex - Startdex +1; // How big a buffer do we need? |
|
|
int BfrSize = Stopdex - Startdex +1; // How big a buffer do we need? |
|
|
vector<char> heapBfr(BfrSize,0); // Make one that size. |
|
|
vector<char> heapBfr(BfrSize,0); // Make one that size. |
|
|
char *Bfr = &heabBfr[0]; |
|
|
|
|
|
|
|
|
char* Bfr = &heapBfr[0]; |
|
|
|
|
|
|
|
|
copyDataCountLines(Bfr, Data, Startdex, Stopdex); // Get our data and ignore our lines. |
|
|
copyDataCountLines(Bfr, Data, Startdex, Stopdex); // Get our data and ignore our lines. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int BfrSize = Stopdex - Startdex +1; // How big a buffer do we need? |
|
|
int BfrSize = Stopdex - Startdex +1; // How big a buffer do we need? |
|
|
vector<char> heapBfr(BfrSize,0); // Make one that size. |
|
|
vector<char> heapBfr(BfrSize,0); // Make one that size. |
|
|
char *Bfr = &heabBfr[0]; |
|
|
|
|
|
|
|
|
char* Bfr = &heapBfr[0]; |
|
|
|
|
|
|
|
|
NewLines += copyDataCountLines(Bfr, Data, Startdex, Stopdex); // Get our data and count our lines. |
|
|
NewLines += copyDataCountLines(Bfr, Data, Startdex, Stopdex); // Get our data and count our lines. |
|
|
|
|
|
|