Skip to content

Instantly share code, notes, and snippets.

@vlofgren
Last active August 29, 2015 14:24
Show Gist options
  • Select an option

  • Save vlofgren/50dd4a512416bab96d10 to your computer and use it in GitHub Desktop.

Select an option

Save vlofgren/50dd4a512416bab96d10 to your computer and use it in GitHub Desktop.
struct A {
uint8_t data[80];
};
struct B {
uint8_t data[80];
};
struct C {
uint8_t data[160];
};
void foo(A a, B b) {
// no-op
}
void bar(C c) {
// no-op
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment