/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v20.20.2
src/embedded_data.h
17 строк
426 B
Joyee Cheung
build: encode non-ASCII Latin1 characters as one byte in JS2C
25 мар 2024, 22:26
Не верифицирован
25 мар 2024, 22:26
d6e702f
Код
Авторство
О чём код?
#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_