forked from jhamman/DHSVM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SizeOfNT.c
executable file
·69 lines (60 loc) · 1.8 KB
/
SizeOfNT.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
* SUMMARY: SizeOfNT() - Determine size of number type in bytes
* USAGE: Part of DHSVM
*
* AUTHOR: Bart Nijssen
* ORG: University of Washington, Department of Civil Engineering
* E-MAIL: [email protected]
* ORIG-DATE: Apr-96
* DESCRIPTION: Determine size of number type in bytes
* DESCRIP-END.
* FUNCTIONS: SizeOfNumberType()
* COMMENTS:
* $Id: SizeOfNT.c,v 1.4 2003/07/01 21:26:24 olivier Exp $
*/
#include <stdlib.h>
#include <sys/types.h>
#include "DHSVMerror.h"
#include "sizeofnt.h"
/*****************************************************************************
Function name: SizeOfNumberType()
Purpose : Determines the size of each number type. Number type
descriptors are "borrowed" from NetCDF.
Required :
NumberType - descriptor of number type (for more info see comments in
InitFileIO.c)
Returns : size of number type
Modifies : NA
Comments :
Information about the number type has to be passed to the functions that
deal with 2DMatrix. The number types are adopted from the NetCDF standard.
*****************************************************************************/
size_t SizeOfNumberType(int NumberType)
{
const char *Routine = "SizeOfNumberType";
size_t ElemSize;
switch (NumberType) {
case NC_BYTE:
case NC_CHAR:
ElemSize = sizeof(char);
break;
case NC_SHORT:
ElemSize = sizeof(short);
break;
case NC_INT:
/* case NC_LONG: *//* NC_LONG is the same as NC_INT in NetCDF 3.4 */
ElemSize = sizeof(int);
break;
case NC_FLOAT:
ElemSize = sizeof(float);
break;
case NC_DOUBLE:
ElemSize = sizeof(double);
break;
default:
ElemSize = 0;
ReportError((char *) Routine, 40);
break;
}
return ElemSize;
}