diff options
| author | 2024-06-14 18:15:31 -0700 | |
|---|---|---|
| committer | 2024-06-14 18:15:31 -0700 | |
| commit | 16a3c85baa350714742e83e6aea1d05766c8d1d9 (patch) | |
| tree | e888fc736dca994a778a12e90bca95c9cd9e9bb1 /src/include | |
| parent | Address #1452 - Partial revert some changes from #1391 (diff) | |
Fix buffer push uint max
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/janet.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/janet.h b/src/include/janet.h index 49430e55..d894c915 100644 --- a/src/include/janet.h +++ b/src/include/janet.h @@ -2021,6 +2021,7 @@ JANET_API void *janet_getpointer(const Janet *argv, int32_t n); JANET_API int32_t janet_getnat(const Janet *argv, int32_t n); JANET_API int32_t janet_getinteger(const Janet *argv, int32_t n); JANET_API int64_t janet_getinteger64(const Janet *argv, int32_t n); +JANET_API uint32_t janet_getuinteger(const Janet *argv, int32_t n); JANET_API uint64_t janet_getuinteger64(const Janet *argv, int32_t n); JANET_API size_t janet_getsize(const Janet *argv, int32_t n); JANET_API JanetView janet_getindexed(const Janet *argv, int32_t n); |
