[vox-tech] a better scanf?? (C-programming question)

Mike Simons vox-tech@lists.lugod.org
Thu, 17 Apr 2003 15:25:56 -0400


--V0207lvV8h4k8FAm
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Thu, Apr 17, 2003 at 11:42:09AM -0700, Andy Campbell wrote:
> Does anyone know of a better input mechanism from stdin than scanf?
[...] =20
> I basically need a scanf that doesn't halt the program?

Andy,

  It sounds like you are trying to read input from a user...

- Are you interested in keypress by keypress input?
  or will all inputs be a line followed by a return key press?


  Non-blocking with select/poll/busy-looping, reading into a=20
buffer, followed by sscanf when a return key is found will certainly
handle the second case... examples if that's what you want.
  Otherwise you will have to go with some curses or raw mode input
to get character by character input from a user, and opens a whole
can of worms...

    TTFN,
      Mike

--=20
GPG key: http://simons-clan.com/~msimons/gpg/msimons.asc
Fingerprint: 524D A726 77CB 62C9 4D56  8109 E10C 249F B7FA ACBE

--V0207lvV8h4k8FAm
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE+nv/E4Qwkn7f6rL4RAhnEAKCc3BbjVT7UKwFmC3T5dDRDtM/IUACfa1KJ
w3/tOEbKgiWB9FBJiU4cfjE=
=DIYN
-----END PGP SIGNATURE-----

--V0207lvV8h4k8FAm--