View Single Post
Old 07-11-2007, 11:22 AM   #1 (permalink)
Silvy
paranoid
 
Silvy's Avatar
 
Location: The Netherlands
[c] write binary file

Hi guys and gals,

I'm trying to write a small tool in C, and while my programming experience is decent in object Pascal, C# and PHP, my C skills are next to nowhere.

Most of the tool is working correctly, but two issues remain:
- writing a fixed binary value to file
- writing a timestamp to file.

I know how to read/write binary streams from a char* type using the function fwrite but I can't figure out how to write a single byte (say: FF) to the same file.

The timestamp is of type time_t and the following is therefore not allowed:
Code:
fwrite(timestamp, 1, sizeof(timestamp), fp)
I'm creating the tool for logging a stream, and while I got that part working, it is adding timestamps that's puzzling me. (the FF is for differentiating between timestamp and actual data).

Any help or pointers (*ouch*) is greatly appreciated.
__________________
"Do not kill. Do not rape. Do not steal. These are principles which every man of every faith can embrace. "
- Murphy MacManus (Boondock Saints)
Silvy is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47