lambda-calc-1/number/set_int.c
2025-01-13 20:36:07 -06:00

13 lines
161 B
C

#include <debug.h>
#include "struct.h"
#include "set_int.h"
void number_set_int(
struct number* this,
int x)
{
mpq_set_si(this->number, x, 1);
}