libowfat/tai/tai_add.c

7 lines
112 B
C

#include "tai.h"
void tai_add(struct tai *t,const struct tai *u,const struct tai *v)
{
t->x = u->x + v->x;
}