hi, i was reading some code and came across this in a header file:
Code:
      #ifdef __cplusplus
      extern "C" {
      #endif

      ...

     #ifdef __cplusplus
     }
     #endif
what does that mean? It's there so that the code can be compiled as c++?