Connecting Tech Pros Worldwide Forums | Help | Site Map

Lib? information about the header files.

Bert
Guest
 
Posts: n/a
#1: Oct 17 '06
Hello,

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

Thanks a lot.



Chris Johnson
Guest
 
Posts: n/a
#2: Oct 17 '06

re: Lib? information about the header files.



Bert wrote:
Quote:
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
Guest
 
Posts: n/a
#3: Oct 18 '06

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.

Quote:
>
Bert wrote:
Quote:
>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.comschreef in bericht
news:1161120931.460096.265410@i3g2000cwc.googlegro ups.com...
Quote:
>
Bert wrote:
Quote:
>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
Guest
 
Posts: n/a
#4: Oct 18 '06

re: Lib? information about the header files.



Bert wrote:
Quote:
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.)
Quote:
----- 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.
>
>
Quote:

Bert wrote:
Quote:
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.comschreef in bericht
news:1161120931.460096.265410@i3g2000cwc.googlegro ups.com...
Quote:

Bert wrote:
Quote:
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
Guest
 
Posts: n/a
#5: Oct 18 '06

re: Lib? information about the header files.


On Wed, 18 Oct 2006 09:04:57 +0200, "Bert" <fa317746@skynet.bewrote:
Quote:
>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
Guest
 
Posts: n/a
#6: Oct 18 '06

re: Lib? information about the header files.



"Al Balmer" <albalmer@att.netschreef in bericht
news:rphcj2lvpve144hdip1a0v8g79ifonjqve@4ax.com...
Quote:
On Wed, 18 Oct 2006 09:04:57 +0200, "Bert" <fa317746@skynet.bewrote:
>
Quote:
>>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.
Quote:
--
Al Balmer
Sun City, AZ

Al Balmer
Guest
 
Posts: n/a
#7: Oct 18 '06

re: Lib? information about the header files.


On Wed, 18 Oct 2006 18:07:29 +0200, "Bert" <fa317746@skynet.bewrote:
Quote:
>
>"Al Balmer" <albalmer@att.netschreef in bericht
>news:rphcj2lvpve144hdip1a0v8g79ifonjqve@4ax.com.. .
Quote:
>On Wed, 18 Oct 2006 09:04:57 +0200, "Bert" <fa317746@skynet.bewrote:
>>
Quote:
>>>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
Guest
 
Posts: n/a
#8: Oct 19 '06

re: Lib? information about the header files.


Bert wrote:
Quote:
>
.... snip ...
Quote:
>
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
Guest
 
Posts: n/a
#9: Oct 21 '06

re: Lib? information about the header files.



"CBFalconer" <cbfalconer@yahoo.comschreef in bericht
news:45367A8E.3ABA6DA8@yahoo.com...
Quote:
Bert wrote:
Quote:
>>
... snip ...
Quote:
>>
>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.


Closed Thread