Ejemplo n.º 1
0
sml_intinf_t *
prim_IntInf_load(const char *src)
{
	sml_intinf_t *n = sml_intinf_new();
	sml_intinf_set_str(n, src, 10);
	return n;
}
Ejemplo n.º 2
0
SML_PRIMITIVE void *
sml_load_intinf(const char *hexsrc)
{
	sml_intinf_t *obj;
	obj = sml_intinf_new();
	sml_intinf_set_str(obj, hexsrc, 16);
	return obj;
}