File: funky.c

package info (click to toggle)
pycparser 2.22-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,752 kB
  • sloc: python: 9,982; ansic: 1,973; makefile: 18; sh: 11
file content (20 lines) | stat: -rw-r--r-- 206 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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";
    
    
}