Xref: utzoo comp.lang.c:15566 comp.unix.questions:11121 Path: utzoo!attcan!uunet!auspex!guy From: guy@auspex.UUCP (Guy Harris) Newsgroups: comp.lang.c,comp.unix.questions Subject: Re: printf, data presentation Message-ID: <851@auspex.UUCP> Date: 16 Jan 89 19:21:56 GMT References: <19@xenlink.UUCP> <225800107@uxe.cso.uiuc.edu> <97@poppy.warwick.ac.uk> Reply-To: guy@auspex.UUCP (Guy Harris) Followup-To: comp.unix.questions Organization: Auspex Systems, Santa Clara Lines: 13 >On UNIX - cbreak mode. Characters are passed to the buffer immediately >(no newline needed) and can be read with getc() or similar. ... >Nothing is echoed to the terminal, so you have to do this explicitly (I >think). Incorrect. Turning echoing off and turning canonicalization off are two separate operations on all versions of UNIX I know of; in practice, most programs that turn canonicalization off also turn echoing off and do the echoing themselves, but that's not required.