Changes in src/tests/Operators.c [e5b96bf:62edde5]
- File:
-
- 1 edited
-
src/tests/Operators.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/tests/Operators.c
re5b96bf r62edde5 1 int ?*?( int a, int b ) { 2 return 0; 3 } 1 int ?*?( int, int ); 4 2 5 3 int ?()( int number1, int number2 ) { … … 7 5 } 8 6 9 int ?+?( int a, int b ) { 10 return 0; 11 } 7 int ?+?( int, int ); 12 8 13 int ?=?( int *a, int b ) { 14 return 0; 15 } 9 int ?=?( int *, int ); 16 10 struct accumulator { 17 11 int total; 18 12 }; 19 13 20 char ?()( struct accumulator a, char number1, char number2 ) { 21 return 'a'; 22 } 14 char ?()( struct accumulator a, char number1, char number2 ); 23 15 24 16 void f( void ) { … … 31 23 } 32 24 33 int main(int argc, char const *argv[]) {34 /* code */35 return 0;36 }37 38 25 // Local Variables: // 39 26 // tab-width: 4 //
Note:
See TracChangeset
for help on using the changeset viewer.