Skip to content

Instantly share code, notes, and snippets.

@dalonng
Last active December 19, 2021 08:32
Show Gist options
  • Save dalonng/bc38e059014fa6f1440b to your computer and use it in GitHub Desktop.
Save dalonng/bc38e059014fa6f1440b to your computer and use it in GitHub Desktop.
Synced via Snip
// LibraryA
void useB(B * structB) {
int x = structB->b
}
// version: 0.1
// Library B
struct B {
int a;
int b;
}
// version: 0.2
// Library B
struct B {
int a;
char c;
int b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment