From: Damian Yerrick Newsgroups: comp.os.msdos.djgpp Subject: Re: Echo *'s to screen? Organization: Pin Eight Software http://pineight.8m.com/ Message-ID: <7ukb5tgi2suuta6qdg6caeigjeivf19n0d@4ax.com> References: <92ta1n$n3u$1 AT newsfeed DOT pit DOT comms DOT marconi DOT com> X-Newsreader: Forte Agent 1.7/32.534 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 10 X-Trace: /wq5/btQxQUpaQyWt1KSpiDr1QdFKssezwOvjbNVj9OB+BhjCquyifOBiG7/b/CJ5Bz76jIQaZHI!TzcK/CGfANJwldRT85be/4tGfki92+eaNtus8t+oRT/jvjONCQRu9HSxbXryK3DsY3J4ECrhGoRj!W1g= X-Complaints-To: abuse AT gte DOT net X-Abuse-Info: Please be sure to forward a copy of ALL headers X-Abuse-Info: Otherwise we will be unable to process your complaint properly NNTP-Posting-Date: Fri, 05 Jan 2001 14:02:52 GMT Distribution: world Date: Fri, 05 Jan 2001 14:02:52 GMT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com On Tue, 2 Jan 2001 14:28:42 -0500, "Chris Policicchio" wrote: >Does anyone know of a way to echo back to the screen *'s instead of what the >user is typing? You know, for passwords, etc? There's a way to do it with conio (getch() to read, gotoxy() to move the cursor, and putch()/cprintf() to put the *'s) and also a way to do it with portable curses. C:\>info libc func conio