Skip to content

Instantly share code, notes, and snippets.

@rainbyte
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rainbyte/9383357f4507c907b851 to your computer and use it in GitHub Desktop.
Save rainbyte/9383357f4507c907b851 to your computer and use it in GitHub Desktop.
#include <stdio.h>
struct bios_info {
char *date;
char *partNumber;
};
struct bus_info {
char *type;
int width;
};
struct memory_info {
char *type;
int clock;
int size;
double bandwidth;
};
struct hardware_info {
int coreClock;
struct bios_info *bios;
struct bus_info *bus;
struct memory_info *memory;
};
struct gpu_info {
struct hardware_info *hardware;
};
int main(void)
{
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment