Testing latest pari + WASM + node.js... and it works?! Wow.
License: GPL3
ubuntu2004
#line 2 "../src/kernel/none/int.h"1/* Copyright (C) 2000 The PARI group.23This file is part of the PARI/GP package.45PARI/GP is free software; you can redistribute it and/or modify it under the6terms of the GNU General Public License as published by the Free Software7Foundation; either version 2 of the License, or (at your option) any later8version. It is distributed in the hope that it will be useful, but WITHOUT9ANY WARRANTY WHATSOEVER.1011Check the License for details. You should have received a copy of it, along12with the package; see the file 'COPYING'. If not, write to the Free Software13Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */1415#define int_MSW(x) ((x)+2)16/*x being a t_INT, return a pointer to the most significant word of x.*/1718#define int_LSW(x) ((x)+lgefint((x))-1)19/*x being a t_INT, return a pointer to the least significant word of x.*/2021#define int_precW(x) ((x)+1)22/*x pointing to a mantissa word, return the previous (less significant)23* mantissa word.*/2425#define int_nextW(x) ((x)-1)26/*x pointing to a mantissa word, return the next (more significant) mantissa27* word.*/2829#define int_W(x,l) ((x)+lgefint((x))-1-(l))30/*x being a t_INT, return a pointer to the l-th least significant word of x.*/3132#define int_W_lg(x,l,lx) ((x)+lx-1-(l))33/*x being a t_INT, return a pointer to the l-th least significant word of x,34* assuming lgefint(x) = lx.*/3536#define PARI_KERNEL_NONE37/*This macro should not be used in libpari itself.*/383940