Testing latest pari + WASM + node.js... and it works?! Wow.
License: GPL3
ubuntu2004
/* Copyright (C) 2000 The PARI group.12This file is part of the PARI/GP package.34PARI/GP is free software; you can redistribute it and/or modify it under the5terms of the GNU General Public License as published by the Free Software6Foundation; either version 2 of the License, or (at your option) any later7version. It is distributed in the hope that it will be useful, but WITHOUT8ANY WARRANTY WHATSOEVER.910Check the License for details. You should have received a copy of it, along11with the package; see the file 'COPYING'. If not, write to the Free Software12Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */1314/*************************************************************************/15/* */16/* GP-SPECIFIC DECLARATIONS */17/* */18/*************************************************************************/19BEGINEXTERN20void init_emacs(void);21void init_readline(void);22void init_texmacs(void);2324/* gp specific routines */25void dbg_down(long k);26void dbg_up(long k);27GEN dbg_err(void);28void gp_quit(long exitcode);29void pari_breakpoint(void);30int whatnow(PariOUT *out, const char *s, int silent);3132extern void (*cb_gp_output)(GEN z);33extern void (*cb_pari_end_output)(void);34extern entree functions_gp[];3536/* architecture-dependent plot files (src/graph/plot*.c) */37void gp_get_plot(PARI_plot *T);38ENDEXTERN394041