Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   C Programming (http://www.velocityreviews.com/forums/f42-c-programming.html)
-   -   Lib? information about the header files. (http://www.velocityreviews.com/forums/t444782-lib-information-about-the-header-files.html)

Bert 10-17-2006 08:59 PM

Lib? information about the header files.
 
Hello,

Where can I find good information about who to interpret information from
headers of liberaries?

Thanks a lot.



Chris Johnson 10-17-2006 09:35 PM

Re: Lib? information about the header files.
 

Bert wrote:
> Hello,
>
> Where can I find good information about who to interpret information from
> headers of liberaries?


I don't usually find reading header files to be terribly profitable. At
least not if there is better/more complete documentation to be found.
Usually the distributors of libraries provide documentation, which is
almost always readily accessible via a Google search.

If you're using Unix, some come with man pages or info docs.


Bert 10-18-2006 07:04 AM

Re: Lib? information about the header files.
 
But is it not essential that you know you to get information from there?
----- Original Message -----
From: "Chris Johnson" <effigies@gmail.com>
Newsgroups: comp.lang.c
Sent: Tuesday, October 17, 2006 11:35 PM
Subject: Re: Lib? information about the header files.


>
> Bert wrote:
>> Hello,
>>
>> Where can I find good information about who to interpret information from
>> headers of liberaries?

>
> I don't usually find reading header files to be terribly profitable. At
> least not if there is better/more complete documentation to be found.
> Usually the distributors of libraries provide documentation, which is
> almost always readily accessible via a Google search.
>
> If you're using Unix, some come with man pages or info docs.
>


"Chris Johnson" <effigies@gmail.com> schreef in bericht
news:1161120931.460096.265410@i3g2000cwc.googlegro ups.com...
>
> Bert wrote:
>> Hello,
>>
>> Where can I find good information about who to interpret information from
>> headers of liberaries?

>
> I don't usually find reading header files to be terribly profitable. At
> least not if there is better/more complete documentation to be found.
> Usually the distributors of libraries provide documentation, which is
> almost always readily accessible via a Google search.
>
> If you're using Unix, some come with man pages or info docs.
>




Chris Johnson 10-18-2006 02:50 PM

Re: Lib? information about the header files.
 

Bert wrote:
> But is it not essential that you know you to get information from there?


While self-knowledge is certainly something to aspire to, I suspect
Google works just as well for those that have not acheived it as for
those that have. (Also, please don't top post.)

> ----- Original Message -----
> From: "Chris Johnson" <effigies@gmail.com>
> Newsgroups: comp.lang.c
> Sent: Tuesday, October 17, 2006 11:35 PM
> Subject: Re: Lib? information about the header files.
>
>
> >
> > Bert wrote:
> >> Hello,
> >>
> >> Where can I find good information about who to interpret information from
> >> headers of liberaries?

> >
> > I don't usually find reading header files to be terribly profitable. At
> > least not if there is better/more complete documentation to be found.
> > Usually the distributors of libraries provide documentation, which is
> > almost always readily accessible via a Google search.
> >
> > If you're using Unix, some come with man pages or info docs.
> >

>
> "Chris Johnson" <effigies@gmail.com> schreef in bericht
> news:1161120931.460096.265410@i3g2000cwc.googlegro ups.com...
> >
> > Bert wrote:
> >> Hello,
> >>
> >> Where can I find good information about who to interpret information from
> >> headers of liberaries?

> >
> > I don't usually find reading header files to be terribly profitable. At
> > least not if there is better/more complete documentation to be found.
> > Usually the distributors of libraries provide documentation, which is
> > almost always readily accessible via a Google search.
> >
> > If you're using Unix, some come with man pages or info docs.
> >



Al Balmer 10-18-2006 03:26 PM

Re: Lib? information about the header files.
 
On Wed, 18 Oct 2006 09:04:57 +0200, "Bert" <fa317746@skynet.be> wrote:

>But is it not essential that you know you to get information from there?


From where? What are you talking about?
http://www.caliburn.nl/topposting.html

--
Al Balmer
Sun City, AZ

Bert 10-18-2006 04:07 PM

Re: Lib? information about the header files.
 

"Al Balmer" <albalmer@att.net> schreef in bericht
news:rphcj2lvpve144hdip1a0v8g79ifonjqve@4ax.com...
> On Wed, 18 Oct 2006 09:04:57 +0200, "Bert" <fa317746@skynet.be> wrote:
>
>>But is it not essential that you know you to get information from there?

>
> From where? What are you talking about?
> http://www.caliburn.nl/topposting.html


Thanks for your information but I just new.

Now the problem is that I started programming with modula2 and their you
read the header (they call defenition files) and then with some knowledge of
the language then you write very quickly program's.
But know I will like to study c/c++ I can't get out information from the
headers.

Thanks.

> --
> Al Balmer
> Sun City, AZ




Al Balmer 10-18-2006 06:21 PM

Re: Lib? information about the header files.
 
On Wed, 18 Oct 2006 18:07:29 +0200, "Bert" <fa317746@skynet.be> wrote:

>
>"Al Balmer" <albalmer@att.net> schreef in bericht
>news:rphcj2lvpve144hdip1a0v8g79ifonjqve@4ax.com.. .
>> On Wed, 18 Oct 2006 09:04:57 +0200, "Bert" <fa317746@skynet.be> wrote:
>>
>>>But is it not essential that you know you to get information from there?

>>
>> From where? What are you talking about?
>> http://www.caliburn.nl/topposting.html

>
>Thanks for your information but I just new.
>
>Now the problem is that I started programming with modula2 and their you
>read the header (they call defenition files) and then with some knowledge of
>the language then you write very quickly program's.
>But know I will like to study c/c++ I can't get out information from the
>headers.
>

That depends on who wrote the headers, and what their intended use is.
If you're referring to the header files that come with a typical C
implementation, Chris is probably right - they aren't very useful.
They are usually complex, concentrate entirely on getting the job done
rather than explaining how it's done, and the implementation's
documentation should be much more useful.

However, when you are writing your own library code, many people
(including me) look on the header files as the place to document the
usage of the library functions. Ideally, the user shouldn't have to
worry about the actual implementation of your library functions. He
only needs the prototypes and sufficient information to use them.

--
Al Balmer
Sun City, AZ

CBFalconer 10-18-2006 07:03 PM

Re: Lib? information about the header files.
 
Bert wrote:
>

.... snip ...
>
> Now the problem is that I started programming with modula2 and
> their you read the header (they call defenition files) and then
> with some knowledge of the language then you write very quickly
> program's. But know I will like to study c/c++ I can't get out
> information from the headers.


If the headers are well written you can. They should describe the
purpose and action of the routines they declare.

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>


Bert 10-21-2006 03:11 PM

Re: Lib? information about the header files.
 

"CBFalconer" <cbfalconer@yahoo.com> schreef in bericht
news:45367A8E.3ABA6DA8@yahoo.com...
> Bert wrote:
>>

> ... snip ...
>>
>> Now the problem is that I started programming with modula2 and
>> their you read the header (they call defenition files) and then
>> with some knowledge of the language then you write very quickly
>> program's. But know I will like to study c/c++ I can't get out
>> information from the headers.

>
> If the headers are well written you can. They should describe the
> purpose and action of the routines they declare.
>
> --
> Chuck F (cbfalconer at maineline dot net)
> Available for consulting/temporary embedded and systems.
> <http://cbfalconer.home.att.net>
>



Oké thanks for helping.




All times are GMT. The time now is 09:53 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57