Changeset 513
- Timestamp:
- 02/21/08 23:23:08 (6 months ago)
- Files:
-
- trunk/thune/gl/project.r (modified) (1 diff)
- trunk/thune/series.c (modified) (3 diffs)
- trunk/thune/thune.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/thune/gl/project.r
r487 r513 94 94 95 95 lflags {-framework ALUT} 96 ;libs %alut 97 96 98 lflags {-framework OpenAL} 97 99 lflags {-framework OpenGL} trunk/thune/series.c
r511 r513 780 780 781 781 782 inline void copyReverseC( const char* src, const char* end, char* dest )782 static inline void copyReverseC( const char* src, const char* end, char* dest ) 783 783 { 784 784 while( src != end ) … … 817 817 818 818 819 inline void copyReverse4( const int32_t* src, const int32_t* end,820 int32_t* dest )819 static inline void copyReverse4( const int32_t* src, const int32_t* end, 820 int32_t* dest ) 821 821 { 822 822 while( src != end ) … … 2696 2696 2697 2697 2698 inline int ur_toLower( int c )2698 static inline int ur_toLower( int c ) 2699 2699 { 2700 2700 if( (c >= 'A') && (c <= 'Z') ) trunk/thune/thune.c
r512 r513 376 376 377 377 378 inline int ur_isFalse( UCell* c )378 static inline int ur_isFalse( UCell* c ) 379 379 { 380 380 return ur_is(c, UT_NONE) || (ur_is(c, UT_LOGIC) && ! ur_logic(c));
