Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Checked C types for typedefs #394

Open
aaronjeline opened this issue Jan 31, 2020 · 0 comments
Open

Checked C types for typedefs #394

aaronjeline opened this issue Jan 31, 2020 · 0 comments

Comments

@aaronjeline
Copy link

Consider the following
typedef struct {
int a;
} *V;

int main(int argc, char **argv) {
V v;
v = malloc(sizeof(V));
v->a = 3;
printf("%d\n", v->a);
free(v);
return 0;
}

What is the checked-c equivalent?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant