View Single Post
Old 07-11-2007, 04:31 PM   #3 (permalink)
Silvy
paranoid
 
Silvy's Avatar
 
Location: The Netherlands
I see where you're getting at.

So I'm looking for a way to get byte(FF)+timestamp+byte(FF) into a buffer so I can use fwrite to get that buffer into the file.

Trying to create a buffer for the FF byte should be something like this I suppose:
Code:
	CHAR byteBuffer[1];
	byteBuffer[0] = 255;
	printf("byteBuffer: %X \n", byteBuffer);
But it is not working as expected:
Output: "byteBuffer: BFFFF48F"
Expected: "byteBuffer: FF"

How do I tell C that 255 is a single byte value?
__________________
"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