File: funky.c

package info (click to toggle)
pycparser 3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,252 kB
  • sloc: python: 8,647; ansic: 1,981; makefile: 12; sh: 11
file content (15 lines) | stat: -rw-r--r-- 193 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
char foo(void)
{
    return '1';
}

int maxout_in(int paste, char** matrix)
{
    char o = foo();
    return (int) matrix[1][2] * 5 - paste;
}

int main()
{
    auto char* multi = "a multi";
}