Re: WOT: printf format code mnemonics

2001-10-01 Thread Kendall Shaw
At 07:49 PM 10/1/2001 -0500, Colin Watson wrote: On Mon, Oct 01, 2001 at 05:40:51PM -0700, Bob Frankstein wrote: > Where did \n \r \t come from? Newline, (carriage) return, tab. Ah. > I would expect them to be \j \m \i, after ^J, ^M, ^I. ^J, ^M, and ^I are just the key sequences which happ

Re: WOT: printf format code mnemonics

2001-10-01 Thread Colin Watson
On Mon, Oct 01, 2001 at 05:40:51PM -0700, Bob Frankstein wrote: > Where did \n \r \t come from? Newline, (carriage) return, tab. > I would expect them to be \j \m \i, after ^J, ^M, ^I. ^J, ^M, and ^I are just the key sequences which happen to correspond to those characters' ASCII values. \n, \r,

WOT: printf format code mnemonics

2001-10-01 Thread Bob Frankstein
Where did \n \r \t come from? I would expect them to be \j \m \i, after ^J, ^M, ^I.