tai_add.c (106B)
1 #include <tai/tai.h> 2 3 void tai_add(struct tai *t, struct tai *u, struct tai *v) 4 { 5 t->x = u->x + v->x; 6 }