]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - contrib/gdtoa/test/getround.c
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / contrib / gdtoa / test / getround.c
1 /****************************************************************
2
3 The author of this software is David M. Gay.
4
5 Copyright (C) 1998 by Lucent Technologies
6 All Rights Reserved
7
8 Permission to use, copy, modify, and distribute this software and
9 its documentation for any purpose and without fee is hereby
10 granted, provided that the above copyright notice appear in all
11 copies and that both that the copyright notice and this
12 permission notice and warranty disclaimer appear in supporting
13 documentation, and that the name of Lucent or any of its entities
14 not be used in advertising or publicity pertaining to
15 distribution of the software without specific, written prior
16 permission.
17
18 LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
19 INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
20 IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
21 SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
22 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
23 IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
24 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
25 THIS SOFTWARE.
26
27 ****************************************************************/
28
29 /* Please send bug reports to David M. Gay (dmg at acm dot org,
30  * with " at " changed at "@" and " dot " changed to ".").      */
31
32 #include <stdio.h>
33 #include <stdlib.h>
34
35 static char *dir[4] = { "toward zero", "nearest", "toward +Infinity",
36                         "toward -Infinity" };
37
38  int
39 #ifdef KR_headers
40 getround(r, s) int r; char *s;
41 #else
42 getround(int r, char *s)
43 #endif
44 {
45         int i;
46
47         i = atoi(s+1);
48         if (i >= 0 && i < 4) {
49                 printf("Rounding mode for strtor... ");
50                 if (i == r)
51                         printf("was and is %d (%s)\n", i, dir[i]);
52                 else
53                         printf("changed from %d (%s) to %d (%s)\n",
54                                 r, dir[r], i, dir[i]);
55                 return i;
56                 }
57         printf("Bad rounding direction %d: choose among\n", i);
58         for(i = 0; i < 4; i++)
59                 printf("\t%d (%s)\n", i, dir[i]);
60         printf("Leaving rounding mode for strtor... at %d (%s)\n", r, dir[r]);
61         return r;
62         }