[Tfug] Question about configuring ftape module in Woody

Andre Lehovich tfug@tfug.org
Fri Jul 12 09:48:01 2002


On Thu, 11 Jul 2002, Scott Denlinger wrote:
> has the following value: "0x370". Is this another notation
> for a hexadecimal value?

0x is the C stdlib prefix for hex.  printf(3) uses it when
directed to write hex integers.  When scanf(3) sees 0x it
parses as hex.

--A