From: "cwg" Newsgroups: comp.os.msdos.djgpp References: <9m6ctucjm2b6v56bi5uflt1dc1peromqdb AT 4ax DOT com> <6uEB9.14913$dr6 DOT 12466 AT news DOT bellsouth DOT net> Subject: Re: Did ja know? Lines: 34 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Message-ID: X-Complaints-To: abuse AT usenetserver DOT com 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: Mon, 18 Nov 2002 21:56:26 US/Eastern Organization: WEBUSENET.com Date: Mon, 18 Nov 2002 21:12:10 -0600 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Grr, trim. "A. Sinan Unur" wrote in message news:Xns92C96010B8C6Aasu1cornelledu AT 132 DOT 236 DOT 56 DOT 8... > "cwg" wrote in > >> >> http://www.delorie.com/djgpp/doc/libc-2.02/libc_26.html > >> >> Infor doesn't even list stdlib > the C lib reference is not organized by header. it is organized by > functionality. stdlib contains various functions that do not fit together > (for example, malloc and strtoul and rand). so, if you want to know about > random numbers, you follow the link for random numbers, find the function > you are looking for, and the documentation tells you which header to > include. this way, you don't have to remember which header each and every > function lives in. (quick, which header do you need to include for abs?) > > now, with info, you can do > > info libc alpha realloc > > to go straight to the documentation for realloc. > > if you think things should be organized differently, feel free to make the > necessary changes. Ok, then you can do this: info libc func stdio And end up with the list for all the functions in stdio But if you were to do this: info libc func stdlib You'd get an error for there's NO NODE for stdlib. And that's what I'm kinda pointing out. Maybe I'm just plain weird about that, but a listing of available functions by headers would make the listing seem complete to me.