Skip to content

Instantly share code, notes, and snippets.

@tacahiroy
Created September 25, 2014 16:02
Show Gist options
  • Select an option

  • Save tacahiroy/f693ee1c5421111c03ca to your computer and use it in GitHub Desktop.

Select an option

Save tacahiroy/f693ee1c5421111c03ca to your computer and use it in GitHub Desktop.
Test file for ctrlp-funky - c
#include <stdio.h>
int main () {
puts("main");
return 0;
}
int func1() {
int a = 0;
if (a == 1) {
return 0;
} else {
return 0;
}
}
int func2()
{
return 0;
}
int
func3() {
return 0;
}
int
func4(int x,
int y)
{
return x + y;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment