Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CU_MAX (0.06 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

      #define CU_FALSE 0
    #endif
    
    #ifndef CU_UNREFERENCED_PARAMETER
      /** Consistent approach to referencing unused parameters. */
      #define CU_UNREFERENCED_PARAMETER(x) (void)x
    #endif
    
    #ifndef CU_MAX
    #  define CU_MAX(a,b) (((a) >= (b)) ? (a) : (b))
    #endif
    
    #ifndef CU_MIN
    #  define CU_MIN(a,b) (((a) >= (b)) ? (b) : (a))
    #endif
    
    #if defined(WIN32) || defined(_WIN32) || defined(__WIN32) || defined(__WIN32__)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
Back to top