13 lines
161 B
C
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);
|
|
}
|
|
|