xs/tai_uint.c | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 3 | 3 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | n/a | ||
pod | n/a | ||
total | 3 | 3 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | /* Reimplementation of Daniel J. Bernsteins tai library. | ||||||
2 | * (C) 2001 Uwe Ohse, |
||||||
3 | * Report any bugs to |
||||||
4 | * Placed in the public domain. | ||||||
5 | */ | ||||||
6 | /* @(#) $Id: tai_uint.c 1.3 01/05/02 09:55:31+00:00 uwe@fjoras.ohse.de $ */ | ||||||
7 | #include "tai.h" | ||||||
8 | |||||||
9 | void | ||||||
10 | 59 | tai_uint (struct tai *target, unsigned int ui) | |||||
11 | { | ||||||
12 | 59 | target->x = ui; | |||||
13 | 59 | } |