Ignore:
Timestamp:
Dec 5, 2002, 9:36:28 PM (23 years ago)
Author:
umoeller
Message:

New toolbar control.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/helpers/standards.h

    r132 r232  
    116116    #define STRINGORNULL(s) (s) ? (s) : "NULL"
    117117
     118    /*
     119     *@@ STOREIFMAX:
     120     *      helpful macro to store a in b if it is
     121     *      larger than b.
     122     *
     123     *@@added V1.0.1 (2002-11-30) [umoeller]
     124     */
     125
     126    #define STOREIFMAX(a, b) if ((a) > (b)) { b = a; }
     127
    118128#endif
    119129
Note: See TracChangeset for help on using the changeset viewer.