From: "Luiz Fernando N. Capitulino" <lcapitulino@terra.com.br>
To: gracecott@sancharnet.in
Cc: lantis@iqranet.info, linux-c-programming@vger.kernel.org
Subject: Re: various doubts part 2
Date: Wed, 11 Aug 2004 19:21:31 -0300 [thread overview]
Message-ID: <20040811192131.52ff2760.lcapitulino@terra.com.br> (raw)
In-Reply-To: <411989D8.1030000@sancharnet.in>
Em Wed, 11 Aug 2004 08:22:08 +0530
joy <gracecott@sancharnet.in> screveu:
| Sascha Retzki wrote:
|
| >Am Di, 2004-08-10 um 04.53 schrieb joy:
| >
| >
| >> outfile = open(filename,O_WRONLY|O_CREAT,S_IRWXU|S_IRWXO);
| >> while((bytes_read = read(STDIN_FILENO,buff,sizeof(buff))>0))
| >> {
| >> if((bytes_written = write(outfile , buff ,bytes_read))!=bytes_read)
| >> {
| >> fprintf(stderr,"write error");
| >> exit(1);
| >> }
| >> }
| >>
| >>
| >
| >Why not reading from 'stdin' directly ? That FD is defined in stdio.h
| >iirc... What is STDIN_FILENO anyway :) ?
| >
| >
| Also a defined contant, and corresponds to the fd of stdin
| (0).(Stevens, adv., prog in unix env.,)
| Anyways ,I used fread and fwrite and the fellow seems to work.
| guess you have to treat stdin as streams only.
Don't, I found the bug:
while((bytes_read = read(STDIN_FILENO,buff,sizeof(buff))>0))
look where ">0" is inside... If you change to:
while((bytes_read = read(STDIN_FILENO,buff,sizeof(buff)))>0)
it will work... man, this bug needed about 20 min to be catch up...
every time I did run the program I tought "it _must_ work, all is
right"... Only saw the bug when I started to write it again myself. :)
and I didn't played with the second part of the code, because
I didn't understand very well what do you want.
PS(0): I'm not a C expert, but I advice you: *always* try to write
clean code.
PS(1): I worked in this because I can't sleep when something which
should work don't work.
--
Luiz Fernando
next prev parent reply other threads:[~2004-08-11 22:21 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-08-10 2:53 various doubts part 2 joy
2004-08-10 7:04 ` Sascha Retzki
2004-08-11 2:52 ` joy
2004-08-11 22:21 ` Luiz Fernando N. Capitulino [this message]
2004-08-12 10:49 ` joy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20040811192131.52ff2760.lcapitulino@terra.com.br \
--to=lcapitulino@terra.com.br \
--cc=gracecott@sancharnet.in \
--cc=lantis@iqranet.info \
--cc=linux-c-programming@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).