i have a char array in a C app that i have to split into parts of 250 so i can send it along to another application that doesn't accept more at one time, how would i do that ? Platform: win32. Thanks in advance!
|
|
From the MSDN documentation:
Note that
Extended example:
|
||||||
|
|
|
I can think of something along the lines of the following:
|
|||
|
|
|
If you strive for performance and you're allowed to touch the string a bit (i.e. the buffer is not const, no thread safety issues etc.), you could momentarily null-terminate the string at intervals of 250 characters and send it in chunks, directly from the original string:
|
|||
|
|
|
|
jvasaks's answer is basically correct, except that he hasn't null terminated 'block'. The code should be this:
} So, now the block is 250 characters including the terminating null. strncpy will null terminate the last block if there are less than 249 characters remaining. |
||||
|
