repo.or.cz
/
sddekit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix various warnings
[sddekit.git]
/
src
/
conn.c
blob
ecd10f02c6b28dd9665120894b06aec2d2ec5692
1
/* copyright 2016 Apache 2 sddekit authors */
2
3
#include
"sddekit.h"
4
5
typedef
struct
sd_conn sd_conn
;
6
7
struct
sd_conn
8
{
9
void
*
ptr
;
10
};
11
12
typedef
struct
connd
13
{
14
bool
d_not_null
;
15
uint32_t
nnz
16
, *
restrict Or
17
, *
restrict Ic
;
18
double
*
restrict w
19
, *
restrict d
;
20
}
connd
;
21
22
/*
23
static bool have_delays(sd_conn *conn)
24
{
25
return ((connd*)conn)->d_not_null;
26
}
27
*/