Where Online Learning is simpler!
The C and C++ Include Header Files
cat -n /usr/include/nodejs/src/embedded_data.h
1 #ifndef SRC_EMBEDDED_DATA_H_ 2 #define SRC_EMBEDDED_DATA_H_ 3 4 #include <cinttypes> 5 #include <string> 6 7 // This file must not depend on node.h or other code that depends on 8 // the full Node.js implementation because it is used during the 9 // compilation of the Node.js implementation itself (especially js2c). 10 11 namespace node { 12 13 const std::string& GetOctalCode(uint8_t index); 14 15 } // namespace node 16 17 #endif // SRC_EMBEDDED_DATA_H_