Changeset 232 for trunk/include/helpers/standards.h
- Timestamp:
- Dec 5, 2002, 9:36:28 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/standards.h
r132 r232 116 116 #define STRINGORNULL(s) (s) ? (s) : "NULL" 117 117 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 118 128 #endif 119 129
Note:
See TracChangeset
for help on using the changeset viewer.