Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
aed9becd
Commit
aed9becd
authored
Jul 01, 2017
by
Uwe Schulzweida
Browse files
Removed function tableInqParLongPtr().
parent
824aa80f
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/table.c
View file @
aed9becd
...
...
@@ -847,27 +847,6 @@ const char *tableInqParNamePtr(int tableID, int code)
}
const
char
*
tableInqParLongnamePtr
(
int
tableID
,
int
code
)
{
const
char
*
longname
=
NULL
;
if
(
tableID
!=
CDI_UNDEFID
)
{
int
npars
=
parTable
[
tableID
].
npars
;
for
(
int
item
=
0
;
item
<
npars
;
item
++
)
{
if
(
parTable
[
tableID
].
pars
[
item
].
id
==
code
)
{
longname
=
parTable
[
tableID
].
pars
[
item
].
longname
;
break
;
}
}
}
return
longname
;
}
int
tableInqParLongname
(
int
tableID
,
int
code
,
char
*
longname
)
{
if
(
((
tableID
>=
0
)
&
(
tableID
<
MAX_TABLE
))
|
(
tableID
==
CDI_UNDEFID
)
)
{
}
else
...
...
src/tablepar.h
View file @
aed9becd
...
...
@@ -23,7 +23,6 @@ static void tableLink(int tableID, const param_type *pars, int npars);
int
tableDef
(
int
modelID
,
int
tablegribID
,
const
char
*
tablename
);
const
char
*
tableInqParNamePtr
(
int
tableID
,
int
parID
);
const
char
*
tableInqParLongnamePtr
(
int
tableID
,
int
parID
);
#endif
/*
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment