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
e835413c
Commit
e835413c
authored
3 years ago
by
Uwe Schulzweida
Browse files
Options
Downloads
Patches
Plain Diff
cdiPrintDefaults: print to stdout.
parent
0f78e7c9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/cdi_int.c
+8
-8
8 additions, 8 deletions
src/cdi_int.c
with
8 additions
and
8 deletions
src/cdi_int.c
+
8
−
8
View file @
e835413c
...
...
@@ -128,25 +128,25 @@ void cdiPrintDefaults(void)
void
cdiPrintVersion
(
void
)
{
fprintf
(
std
err
,
" CDI library version : %s
\n
"
,
cdiLibraryVersion
());
fprintf
(
std
out
,
" CDI library version : %s
\n
"
,
cdiLibraryVersion
());
#ifdef HAVE_LIBCGRIBEX
fprintf
(
std
err
,
" cgribex library version : %s
\n
"
,
cgribexLibraryVersion
());
fprintf
(
std
out
,
" cgribex library version : %s
\n
"
,
cgribexLibraryVersion
());
#endif
#ifdef HAVE_LIBGRIB_API
fprintf
(
std
err
,
" ecCodes library version : %s
\n
"
,
gribapiLibraryVersionString
());
fprintf
(
std
out
,
" ecCodes library version : %s
\n
"
,
gribapiLibraryVersionString
());
#endif
#ifdef HAVE_LIBNETCDF
fprintf
(
std
err
,
" NetCDF library version : %s
\n
"
,
cdfLibraryVersion
());
fprintf
(
std
out
,
" NetCDF library version : %s
\n
"
,
cdfLibraryVersion
());
#endif
#ifdef HAVE_NC4HDF5
fprintf
(
std
err
,
" hdf5 library version : %s
\n
"
,
hdfLibraryVersion
());
fprintf
(
std
out
,
" hdf5 library version : %s
\n
"
,
hdfLibraryVersion
());
#endif
#ifdef HAVE_LIBSERVICE
fprintf
(
std
err
,
" exse library version : %s
\n
"
,
srvLibraryVersion
());
fprintf
(
std
out
,
" exse library version : %s
\n
"
,
srvLibraryVersion
());
#endif
fprintf
(
std
err
,
" FILE library version : %s
\n
"
,
fileLibraryVersion
());
fprintf
(
std
out
,
" FILE library version : %s
\n
"
,
fileLibraryVersion
());
#ifdef HAVE_LIBFDB5
fprintf
(
std
err
,
" FDB5 library version : %s
\n
"
,
fdb5_version
());
fprintf
(
std
out
,
" FDB5 library version : %s
\n
"
,
fdb5_version
());
#endif
}
...
...
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