aboutsummaryrefslogtreecommitdiff
path: root/src/math.h
blob: 3855019dc9daca79c2b19b293d482d10211da482 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "lua.h"
#include "config.h"

int l_lcm(lua_State*);
int l_gcd(lua_State*);

static const luaL_Reg math_function_list [] = {
  {"lcm",l_lcm},
  //{"gcd",l_gcd},
  
  {NULL,NULL}
};

static struct config math_config[] = {
  {.type = c_none}
};