Changeset 38
- Timestamp:
- 02/09/06 21:29:23 (3 years ago)
- Location:
- trunk/orca
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/op.c
r36 r38 671 671 } 672 672 673 673 #if 0 674 674 static int tupleSame( const OValue* a, const OValue* b ) 675 675 { … … 686 686 return 0; 687 687 } 688 689 690 static int orTypeEqual( const OValue* a, const OValue* b ) 688 #endif 689 690 691 static int orTypeEqual( OValue* a, OValue* b ) 691 692 { 692 693 int logic = 0; … … 743 744 744 745 745 int orEqual( const OValue* a, constOValue* b )746 int orEqual( OValue* a, OValue* b ) 746 747 { 747 748 if( a->type == OT_INTEGER ) -
trunk/orca/ovalue.h
r37 r38 397 397 void orRegisterPortDevice( OPortDevice* ); 398 398 void orRegisterFileLoader( int (*func)( const char*, uint8_t*, int ) ); 399 int orEqual( const OValue*, constOValue* );399 int orEqual( OValue*, OValue* ); 400 400 void orForm( OString* out, const OValue* val ); 401 401 void orMold( OString* out, const OValue* val );
