C API?

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

    #1

    C API?

    Hi,
    I am just looking for a complete reference to C, but I only can find
    books teaching C. Other programming languages have got websites to look
    up functions and other informations. Do you know a list of all C
    functions with their appropriate header files?

    Regards,
    Thomas
  • Ian Collins

    #2
    Re: C API?

    Thomas Barth wrote:[color=blue]
    > Hi,
    > I am just looking for a complete reference to C, but I only can find
    > books teaching C. Other programming languages have got websites to look
    > up functions and other informations. Do you know a list of all C
    > functions with their appropriate header files?
    >[/color]
    Just about every operating system ships with online manuals for the
    standard C library. Use man on UNIX/Linux or the help built into the
    IDE on Windows.

    --
    Ian Collins.

    Comment

    • Michael Mair

      #3
      Re: C API?

      Thomas Barth schrieb:[color=blue]
      > I am just looking for a complete reference to C, but I only can find
      > books teaching C. Other programming languages have got websites to look
      > up functions and other informations. Do you know a list of all C
      > functions with their appropriate header files?[/color]

      There is no "complete" reference to C apart from the language
      standard.
      If you want a C99 library reference, have a look at the
      information offered on dinkumware.com; however, there are
      many other library references around. Apart from that, take
      a look at the Harbison&Steele C reference book.


      Cheers
      Michael
      --
      E-Mail: Mine is an /at/ gmx /dot/ de address.

      Comment

      • mr.lynch@gmail.com

        #4
        Re: C API?

        Thomas Barth wrote:[color=blue]
        > Hi,
        > I am just looking for a complete reference to C, but I only can find
        > books teaching C. Other programming languages have got websites to look
        > up functions and other informations. Do you know a list of all C
        > functions with their appropriate header files?
        >
        > Regards,
        > Thomas[/color]

        I own the following:

        http://www.amazon.com/gp/product/cus...487693-5971007

        It is a good pure libc reference, nothing more.

        Sean

        Comment

        • Thomas Barth

          #5
          Re: C API?

          Am 02/19/2006 10:37 PM schrieb Ian Collins:[color=blue]
          > Thomas Barth wrote:[color=green]
          >> Hi,
          >> I am just looking for a complete reference to C, but I only can find
          >> books teaching C. Other programming languages have got websites to look
          >> up functions and other informations. Do you know a list of all C
          >> functions with their appropriate header files?
          >>[/color]
          > Just about every operating system ships with online manuals for the
          > standard C library. Use man on UNIX/Linux or the help built into the
          > IDE on Windows.
          >[/color]

          Man what? I hate the ugly man pages on Linux and they dont provide an
          overview of existing functions and descriptions! Lucky me, I ve found
          what I was looking for




          Regards,
          Thomas

          Comment

          • santosh

            #6
            Re: C API?

            Thomas Barth wrote:[color=blue]
            > Hi,
            > I am just looking for a complete reference to C, but I only can find
            > books teaching C. Other programming languages have got websites to look
            > up functions and other informations. Do you know a list of all C
            > functions with their appropriate header files?[/color]

            The following links may help:

            www-ccs.ucsd.edu/c/




            The last link gives access to online, publically available, drafts of
            the lastest standard for C.

            Comment

            • Randy Howard

              #7
              Re: C API?

              Thomas Barth wrote
              (in article <45t6ipF87u73U1 @individual.net >):
              [color=blue]
              > Am 02/19/2006 10:37 PM schrieb Ian Collins:[color=green]
              >> Thomas Barth wrote:[color=darkred]
              >>> Hi,
              >>> I am just looking for a complete reference to C, but I only can find
              >>> books teaching C. Other programming languages have got websites to look
              >>> up functions and other informations. Do you know a list of all C
              >>> functions with their appropriate header files?
              >>>[/color]
              >> Just about every operating system ships with online manuals for the
              >> standard C library. Use man on UNIX/Linux or the help built into the
              >> IDE on Windows.
              >>[/color]
              >
              > Man what? I hate the ugly man pages on Linux and they dont provide an
              > overview of existing functions and descriptions! Lucky me, I ve found
              > what I was looking for
              >
              > http://www.gnu.org/software/libc/manual/[/color]

              Danger. Not everything in there is "standard C".

              If you really want the straight scoop, you could buy the
              standard, but may find it hard to read. You could use something
              like C A Reference Manual by Harbison and Steele to good effect
              however.

              --
              Randy Howard (2reply remove FOOBAR)
              "The power of accurate observation is called cynicism by those
              who have not got it." - George Bernard Shaw





              Comment

              Working...