Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CU_UNREFERENCED_PARAMETER (0.15 sec)

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

      #define CU_TRUE 1
    #endif
    
    #ifndef CU_FALSE
      /** Boolean FALSE for CUnit use. */
      #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
    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