/
githubmirror
/
julia
Обзор
Документация
Войти
/
githubmirror
/
julia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/flisp/equalhash.c
26 строк
615 B
Cody Tapscott
Various `htable_t` fixes / improvements. (#61446)
03 апр 2026, 22:36
Не верифицирован
03 апр 2026, 22:36
edd9a51
Код
Авторство
О чём код?
#include <stdlib.h> #include <stdio.h> #include <string.h> #include <assert.h> #include <limits.h> #include <setjmp.h> #include "flisp.h" #include "equalhash.h" #include "htable.inc" #define _equal_lispvalue_(x, y, ctx) \ equal_lispvalue((fl_context_t*)ctx, (value_t)(x), (value_t)(y)) #define _hash_lispvalue_(x, ctx) \ hash_lispvalue((fl_context_t*)ctx, (value_t)(x)) #ifdef __cplusplus extern "C" { #endif HTIMPL_R(equalhash, _hash_lispvalue_, _equal_lispvalue_, _HTIMPL_IDENTITY_KEYALLOC, _HTIMPL_NOOP_KEYFREE) #ifdef __cplusplus } #endif