Lib? information about the header files.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Bert

    #1

    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

    #2
    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.

    Comment

    • Bert

      #3
      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 .comschreef in bericht
      news:1161120931 .460096.265410@ i3g2000cwc.goog legroups.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.
      >

      Comment

      • Chris Johnson

        #4
        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 .comschreef in bericht
        news:1161120931 .460096.265410@ i3g2000cwc.goog legroups.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.

        Comment

        • Al Balmer

          #5
          Re: Lib? information about the header files.

          On Wed, 18 Oct 2006 09:04:57 +0200, "Bert" <fa317746@skyne t.bewrote:
          >But is it not essential that you know you to get information from there?
          From where? What are you talking about?


          --
          Al Balmer
          Sun City, AZ

          Comment

          • Bert

            #6
            Re: Lib? information about the header files.


            "Al Balmer" <albalmer@att.n etschreef in bericht
            news:rphcj2lvpv e144hdip1a0v8g7 9ifonjqve@4ax.c om...
            On Wed, 18 Oct 2006 09:04:57 +0200, "Bert" <fa317746@skyne t.bewrote:
            >
            >>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

            Comment

            • Al Balmer

              #7
              Re: Lib? information about the header files.

              On Wed, 18 Oct 2006 18:07:29 +0200, "Bert" <fa317746@skyne t.bewrote:
              >
              >"Al Balmer" <albalmer@att.n etschreef in bericht
              >news:rphcj2lvp ve144hdip1a0v8g 79ifonjqve@4ax. com...
              >On Wed, 18 Oct 2006 09:04:57 +0200, "Bert" <fa317746@skyne t.bewrote:
              >>
              >>>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

              Comment

              • CBFalconer

                #8
                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>

                Comment

                • Bert

                  #9
                  Re: Lib? information about the header files.


                  "CBFalconer " <cbfalconer@yah oo.comschreef in bericht
                  news:45367A8E.3 ABA6DA8@yahoo.c om...
                  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.


                  Comment

                  Working...