Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/Operators.c

    re5b96bf r62edde5  
    1 int ?*?( int a, int b ) {
    2         return 0;
    3 }
     1int ?*?( int, int );
    42
    53int ?()( int number1, int number2 ) {
     
    75}
    86
    9 int ?+?( int a, int b ) {
    10         return 0;
    11 }
     7int ?+?( int, int );
    128
    13 int ?=?( int *a, int b ) {
    14         return 0;
    15 }
     9int ?=?( int *, int );
    1610struct accumulator {
    1711        int total;
    1812};
    1913
    20 char ?()( struct accumulator a, char number1, char number2 ) {
    21         return 'a';
    22 }
     14char ?()( struct accumulator a, char number1, char number2 );
    2315
    2416void f( void ) {
     
    3123}
    3224
    33 int main(int argc, char const *argv[]) {
    34         /* code */
    35         return 0;
    36 }
    37 
    3825// Local Variables: //
    3926// tab-width: 4 //
Note: See TracChangeset for help on using the changeset viewer.