ZedZone
|
Blog
|
Software
|
Code
projects
/
panamaz
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
panama tools and demos
[panamaz]
/
test-api
/
api.h
1
2
struct data {
3
struct data *next;
4
5
int a;
6
int b;
7
int c:3;
8
unsigned d:5;
9
int (*test_a)(void);
10
};
11
12
void print_data(struct data *data);