Tagged Questions
2
votes
6answers
1k views
Buffer size in C
When provided with a buffer size in C, how do I know how much is left and when do I need to stop using the memory?
For example, if the function I am writing is this:
void ascii_morse (lookuptable ...
1
vote
2answers
2k views
Creating accessing shared memory in C
So I have a problem that I don't really know how to go about. I was hoping maybe you could let me know how to deal with it.
I need to allocate N number of buffers in shared memory. Each buffer should ...
0
votes
2answers
78 views
How can I take a network buffer and pass it into a function that is expecting a FILE in C
I am looking to be able to download a file over a network socket from an HTTP server (A jpeg). I then need to pass the downloaded file into c-jpeg-steganography ...
0
votes
4answers
334 views
Array of buffers in C programming?
I am trying to create an array of buffers. I need to store an integer into each buffer. I'm not quite sure how this should be done.
int BUFFER_LENGTH = 50; //the size of each buffer
int ...