Author Topic: How to : Using C and C++ headers  (Read 3034 times)

Offline toutarrive

  • Multiple posting newcomer
  • *
  • Posts: 11
How to : Using C and C++ headers
« on: November 19, 2007, 06:07:01 pm »
Hi all,

I'm looking for a document which summarize the equivalence between C and C++ headers. Is there any?

So far, i've been using this technique when i couldn't find a C++ header equivalent (as far as my knolewdge allows me..) :

Quote
extern "C" {
#include <io.h>
#include <sys/stat.h>
}/

Oli

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: How to : Using C and C++ headers
« Reply #1 on: November 20, 2007, 08:34:38 am »
I'm looking for a document which summarize the equivalence between C and C++ headers. Is there any?
Have a look but not in this forum. Try for example here: http://cboard.cprogramming.com/index.php.

This is *not* a general programming forum. We cannot and will not maintain an "all dev's question" forum. Please ask C::B related questions here only. Thanks.

With regards, Morten.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline toutarrive

  • Multiple posting newcomer
  • *
  • Posts: 11
Re: How to : Using C and C++ headers
« Reply #2 on: November 20, 2007, 11:37:09 am »
Thanks Morten