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
9c15c76a
Commit
9c15c76a
authored
Apr 17, 2014
by
Thomas Jahns
🤸
Browse files
Remove non-essential wrapper.
parent
789bc621
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/taxis.c
View file @
9c15c76a
...
...
@@ -40,7 +40,7 @@ char *Timeunits[] = {
static
int
taxisCompareP
(
void
*
taxisptr1
,
void
*
taxisptr2
);
static
void
taxisDestroyP
(
void
*
taxisptr
);
static
void
taxisPrint
P
(
void
*
taxisptr
,
FILE
*
fp
);
static
void
taxisPrint
Kernel
(
taxis_t
*
taxisptr
,
FILE
*
fp
);
static
int
taxisGetPackSize
(
void
*
taxisptr
,
void
*
context
);
static
void
taxisPack
(
void
*
taxisptr
,
void
*
buf
,
int
size
,
int
*
position
,
void
*
context
);
...
...
@@ -49,7 +49,7 @@ static int taxisTxCode ( void );
const
resOps
taxisOps
=
{
taxisCompareP
,
taxisDestroyP
,
taxisPrint
P
,
(
void
(
*
)(
void
*
,
FILE
*
))
taxisPrint
Kernel
,
taxisGetPackSize
,
taxisPack
,
taxisTxCode
...
...
@@ -1365,7 +1365,8 @@ void ptaxisCopy(taxis_t *dest, taxis_t *source)
}
void
taxisPrintKernel
(
taxis_t
*
taxisptr
,
FILE
*
fp
)
static
void
taxisPrintKernel
(
taxis_t
*
taxisptr
,
FILE
*
fp
)
{
int
vdate_lb
,
vdate_ub
;
int
vtime_lb
,
vtime_ub
;
...
...
@@ -1407,12 +1408,8 @@ void taxisPrint ( int taxisID )
taxisPrintKernel
(
taxisptr
,
stdout
);
}
void
taxisPrintP
(
void
*
taxisptr
,
FILE
*
fp
)
{
taxisPrintKernel
((
taxis_t
*
)
taxisptr
,
fp
);
}
int
taxisCompareP
(
void
*
taxisptr1
,
void
*
taxisptr2
)
static
int
taxisCompareP
(
void
*
taxisptr1
,
void
*
taxisptr2
)
{
taxis_t
*
t1
,
*
t2
;
...
...
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