Skip to content

Instantly share code, notes, and snippets.

@ynonp
Created February 15, 2012 05:32
Show Gist options
  • Save ynonp/1833521 to your computer and use it in GitHub Desktop.
Save ynonp/1833521 to your computer and use it in GitHub Desktop.
.
├── include
│   ├── entry.h
│   ├── photo.h
│   └── user.h
├── lib
├── resources
│   └── default.png
└── src
├── entry.c
├── main.c
├── photo.c
└── user.c
int add(int x, int y) {
// adds x and y
return x + y;
}
int deleteFile(char *filename) {
// delete a file
}
.
├── include
│   ├── entry.h
│   └── user.h
├── lib
├── resources
└── src
├── entry.c
├── main.c
└── user.c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment