checkedc icon indicating copy to clipboard operation
checkedc copied to clipboard

Checked C types for typedefs

Open aaronjeline opened this issue 5 years ago • 0 comments

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?

aaronjeline avatar Jan 31 '20 17:01 aaronjeline