Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libcdi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mpim-sw
libcdi
Commits
6b2b4af4
Commit
6b2b4af4
authored
4 years ago
by
Uwe Schulzweida
Browse files
Options
Downloads
Patches
Plain Diff
Removed unused function binReadFlt32() and binReadFlt64().
parent
381cafd4
No related branches found
Branches containing commit
Tags
cdi-1.9.7rc1
Tags containing commit
1 merge request
!7
Replaced gridDefDatatype()/gridInqDatatype() by cdiDefKeyInt()/cdiInqKeyInt()...
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/binary.c
+0
-22
0 additions, 22 deletions
src/binary.c
src/binary.h
+1
-4
1 addition, 4 deletions
src/binary.h
with
1 addition
and
26 deletions
src/binary.c
+
0
−
22
View file @
6b2b4af4
...
...
@@ -142,28 +142,6 @@ int binReadInt64(int fileID, int byteswap, size_t size, INT64 *ptr)
}
int
binReadFlt32
(
int
fileID
,
int
byteswap
,
size_t
size
,
FLT32
*
ptr
)
{
if
(
sizeof
(
FLT32
)
!=
4
)
Error
(
"Not implemented for %d byte float!"
,
sizeof
(
FLT32
));
fileRead
(
fileID
,
(
void
*
)
ptr
,
4
*
size
);
if
(
byteswap
)
swap4byte
(
ptr
,
size
);
return
0
;
}
int
binReadFlt64
(
int
fileID
,
int
byteswap
,
size_t
size
,
FLT64
*
ptr
)
{
if
(
sizeof
(
FLT64
)
!=
8
)
Error
(
"Not implemented for %d byte float!"
,
sizeof
(
FLT64
));
fileRead
(
fileID
,
(
void
*
)
ptr
,
8
*
size
);
if
(
byteswap
)
swap8byte
(
ptr
,
size
);
return
0
;
}
int
binWriteInt32
(
int
fileID
,
int
byteswap
,
size_t
size
,
INT32
*
ptr
)
{
if
(
sizeof
(
INT32
)
!=
4
)
Error
(
"Not implemented for %d byte integer!"
,
sizeof
(
INT32
));
...
...
This diff is collapsed.
Click to expand it.
src/binary.h
+
1
−
4
View file @
6b2b4af4
...
...
@@ -2,7 +2,7 @@
#define BINARY_H
#ifdef HAVE_CONFIG_H
#
include "config.h"
#include
"config.h"
#endif
#include
<inttypes.h>
...
...
@@ -34,9 +34,6 @@ int binReadInt64(int fileID, int byteswap, size_t size, INT64 *ptr);
int
binWriteInt32
(
int
fileID
,
int
byteswap
,
size_t
size
,
INT32
*
ptr
);
int
binWriteInt64
(
int
fileID
,
int
byteswap
,
size_t
size
,
INT64
*
ptr
);
int
binReadFlt32
(
int
fileID
,
int
byteswap
,
size_t
size
,
FLT32
*
ptr
);
int
binReadFlt64
(
int
fileID
,
int
byteswap
,
size_t
size
,
FLT64
*
ptr
);
int
binWriteFlt32
(
int
fileID
,
int
byteswap
,
size_t
size
,
FLT32
*
ptr
);
int
binWriteFlt64
(
int
fileID
,
int
byteswap
,
size_t
size
,
FLT64
*
ptr
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment