/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v24.18.0
src/embedded_data.h
17 строк
426 B
Joyee Cheung
build: encode non-ASCII Latin1 characters as one byte in JS2C
17 фев 2024, 20:09
Не верифицирован
17 фев 2024, 20:09
72df124
Код
Авторство
О чём код?
#ifndef SRC_EMBEDDED_DATA_H_ #define SRC_EMBEDDED_DATA_H_ #include <cinttypes> #include <string> // This file must not depend on node.h or other code that depends on // the full Node.js implementation because it is used during the // compilation of the Node.js implementation itself (especially js2c). namespace node { const std::string& GetOctalCode(uint8_t index); } // namespace node #endif // SRC_EMBEDDED_DATA_H_