-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathkind_map
More file actions
executable file
·33 lines (32 loc) · 815 Bytes
/
kind_map
File metadata and controls
executable file
·33 lines (32 loc) · 815 Bytes
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
{
'real': { '' : 'float',
'4' : 'float',
'isp' : 'float',
'8' : 'double',
'dp' : 'double',
'idp' : 'double'},
'complex' : { '' : 'complex_float',
'8' : 'complex_double',
'16' : 'complex_long_double',
'dp' : 'complex_double'},
'integer' : { '4' : 'int',
'8' : 'long_long',
'sp' : 'int' ,
'dp' : 'long_long' },
'character' : {'132' : 'char',
'256' : 'char',
'1024' : 'char',
'80' : 'char',
'40' : 'char',
'26' : 'char',
'20' : 'char',
'18' : 'char',
'16' : 'char',
'12' : 'char',
'10' : 'char',
'8' : 'char',
'7' : 'char',
'6' : 'char',
'2' : 'char',
'1' : 'char' }
}