Skip to content

Instantly share code, notes, and snippets.

@agrif
Created November 26, 2011 07:01
Show Gist options
  • Save agrif/1395204 to your computer and use it in GitHub Desktop.
Save agrif/1395204 to your computer and use it in GitHub Desktop.
typedef struct
{
int a;
int b;
const char* str;
} RSThingy;
/* ... */
RSThingy thingy = {
.a = 10,
.str = "Hello!",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment