[DOC] Document RbConfig::SIZEOF

This commit is contained in:
Alan Wu 2024-07-12 19:35:21 -04:00
Родитель 3531d22918
Коммит a1435981e9
1 изменённых файлов: 14 добавлений и 0 удалений

Просмотреть файл

@ -25,6 +25,20 @@ conditions = {
#endif
% end
/*
* Document-const: SIZEOF
*
* A Hash with the byte size of \C types available to the compiler
* used to build Ruby. To access this constant, first run
* <code>require 'rbconfig/sizeof'</code>.
*
* require 'rbconfig/sizeof'
* RUBY_PLATFORM # => "x64-mingw-ucrt"
* RbConfig::SIZEOF.fetch_values('long', 'void*') # => [4, 8]
*
*/
extern void Init_limits(void);
void
Init_sizeof(void)