Subject: Is there a "get" function for words and dwords?
From: khabibiuf hotmail.com (Khurram)
Date: Wed, 11 Sep 2002 03:55:06 +0900
Hi all,
.getc can be used to read characters (1 byte) at a time. Is there
anything that will read a word or dword at a time?
Currently I'm getting around it by doing:
data16 = a.getc | (a.getc << 8)
Thanks,
- Khurram